欢迎各位兄弟 发布技术文章

这里的技术是共享的

You are here

javascript

shiping1 的头像

getcookie setcookie delcookie 有大用

下面是人家正规网站做的 有大用

var inplay = getCookie("inplayer");


普通分类: 
shiping1 的头像

js 判断浏览器 trim 判断是不是数字 判断是不是正数 的函数

var agt = navigator.userAgent.toLowerCase();
var is_ie = ((agt.indexOf("msie") != -1) && (agt.indexOf("opera") == -1));
var is_ie6 = is_ie && /msie (\d)\./.test(agt) && parseInt(RegExp.$1) < 7;

String.prototype.ltrim=function()
{
    return this.replace(/^\s+/,"");
}
String.prototype.rtrim=function()
{
    return this.replace(/\s+$/,"");
}
String.prototype.trim=function()
{
    return this.ltrim().rtrim();
}
function judgeIsNaN(num)
{
  if(num=='Infinity'){
普通分类: 
shiping1 的头像

js function 里面定义function

普通分类: 
shiping1 的头像

js 定义一个对象 里面有function和变量

/*
 * PhoneGap Essential Training by ninghao.net
 */
var app = {
    // 应用构造器
    initialize: function() {
        this.bindEvents();
    },
    // 绑定事件监听器
    bindEvents: function() {
        document.addEventListener('deviceready', this.onDeviceReady, false);
    },
    // deviceready 事件处理
    onDeviceReady: function() {
        app.receivedEvent('deviceready');
    },
    // 接收到事件以后更新 DOM
    receivedEvent: function(id) {
        var parentElement = document.getElementById(id);
普通分类: 
shiping1 的头像

最好用的省市二级联动 原生js实现你值得拥有

<script language=javascript> 
普通分类: 
shiping1 的头像

8顶 JS省市二级联动菜单

<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=gb2312">
<meta name="keywords" content="站长,网页特效,js特效,广告代码,zzjs,zzjs.net,sky,www.zzjs.net,站长特效 网" />
<meta name="description" content="www.zzjs.net,站长特效网,站长必备js特效及广告代码。大量高质量js特效,提供高质量广告代码下载,尽在站长特效网" />
<title>JS省市二级联动菜单,sky整理收集。</title>
<style>
<!--
body         { font-size: 14px }
-->
</style>
</head>
普通分类: 
shiping1 的头像

禁止输入指定字符 有大用

普通分类: 
shiping1 的头像

web站点常用js

普通分类: 
shiping1 的头像

js兼容IE和火狐点击收藏网页 有大用

普通分类: 
shiping1 的头像

JS获取自定义范围随机数

普通分类: 
shiping1 的头像

js 产生不重复随机数

google "js 产生不重复随机数"
普通分类: 
shiping1 的头像

javascript 如何生成不重复的随机数

<script>
alert(new Date().getTime())</script>

普通分类: 
shiping1 的头像

如何用js读取复选框的值

如何用js读取复选框的值?

普通分类: 
shiping1 的头像

播放 swf 文件

引入 <script src="html/AC_RunActiveContent.js" type="text/javascript"></script>

在html 中
<script type="text/javascript">
普通分类: 
shiping1 的头像

js 变大小写 大写 小写

str = str.toUpperCase() //大写
普通分类: 
shiping1 的头像

用js查找中文字符串位置 JavaScript indexOf() 方法 文字 string str 字符串包含 有大用

JavaScript indexOf() 方法

普通分类: 
shiping1 的头像

<script src= 缓存

nbsp;14:24:08
只是有些代理& 泪痕_元怜  14:06:10
<script src="aaa.php" ></script> 如何防止读到的是缓存数据
袁绍锋  14:18:54
什么情况??
袁绍锋  14:19:08
<script src="aaa.php?id=随机id" ></script>
泪痕_元怜  14:23:16

泪痕_元怜  14:23:22
记得 以前苏州人没加过
袁绍锋  14:23:35
哦,,一般来说,是不需要加的,
泪痕_元怜  14:23:42
为什么呢
袁绍锋  14:23:46
因为 php 本来就不被缓存的
袁绍锋  14:23:53
所以,一般不需要加,
泪痕_元怜  14:23:57
哦 
袁绍锋 &
普通分类: 
shiping1 的头像

js 获取搜索引擎与关键词 有大用

普通分类: 
shiping1 的头像

Uncaught TypeError: undefined is not a function

普通分类: 
shiping1 的头像

跨域CORS原理及调用具体示例

普通分类: 
shiping1 的头像

跨域JSONP原理及调用具体示例

 

普通分类: 
shiping1 的头像

解说同源策略和跨域访问

 

普通分类: 
shiping1 的头像

前端跨域----不定时更新

普通分类: 
shiping1 的头像

jsonp 跨域 ajax 跨域 有大用 有大大用

www.phonegap100.com 上 搜 "jsonp" 就可以搜到跨域相关文章 

1)其实 <script src="XXXX.php" ></script> 直接引入就可以跨域

2)ajax jsonp  下面是例子
js 代码
$(function(){
     $.ajax({
                 type: "get",
                 async: false,
                 url: "http://www.57lehuo.com/index.php?a=index&m=api&method=itemsSearchGet&keyword=连衣裙&sign=5cb85c3eed22c1908e05c584813c8dd2",

普通分类: 
shiping1 的头像

js 获取对象的id

普通分类: 
shiping1 的头像

定义方法 放的位置

//下面定义的方法可以放在 (function (){}())的外面
//也可以放在它的里面
 

   function onError(jqXHR, textStatus, errorThrown) {
        console.log(jqXHR);
        console.log(textStatus);
        console.log(errorThrown);
    }

(function () {
    'use strict';
  // function onError(jqXHR, textStatus, errorThrown) {
     //   console.log(jqXHR);
       // console.log(textStatus);
      //  console.log(errorThrown);
   // }
    $.ajax({
普通分类: 
shiping1 的头像

js 监听 click事件的一个例子

/*
 * PhoneGap Essential Training by ninghao.net
 */

var app = {
    // 应用构造器
    initialize: function() {
        this.bindEvents();
        var watchID = null;
    },
    // 绑定事件监听器
    bindEvents: function() {
        document.addEventListener('deviceready', this.onDeviceReady, false);
    },
    // deviceready 事件处理
    onDeviceReady: function() {
        app.receivedEvent('deviceready');
        var startWatch = document.getElementById('startwatch');
普通分类: 
shiping1 的头像

js 增加元素

var imageContainer = document.getElementById('imagecontainer');
        var imageEntity = document.createElement('img');
        imageEntity.src = image;
        imageContainer.appendChild(imageEntity);
        imageContainer.style.display = "block";
普通分类: 
shiping1 的头像

表单元素值的表示方法

1)第一种方法 下面是html 
<form id="set-form" class="col-md-6">
                  <input type="text"   id="" name="name" >
            </form>


 下面是js代码 得到表单元素值
var setForm = document.getElementById('set-form');
setForm.elements['name'].value);


2)第二种方法 下面是html
<form   id="form1"  method="post" action="/php/zixunbaoming.php" name="addcontent">
<input type="text" name="title" check="2" id="xingming" class="textinput"/>
普通分类: 
shiping1 的头像

如何给元素绑定click点击事件

如何给元素绑定click点击事件

普通分类: 

页面

Subscribe to RSS - javascript