发布时间:2016-03-11 16:45:13
用原生的ajax实现用户登录的前后台代码前台代码点击(此处)折叠或打开 task .........【阅读全文】
发布时间:2016-02-29 16:56:17
本文总结了使用Extjs,jquery,javascript进行ajax请求的方法,实际上,无论是使用extjs还是jquery,最终都是使用JavaScript中的XMLHttpRequest对象。ajax请求的参数一般包括:请求方式(post或get),请求的参数,请求成功或失败时的回调函数。点击(此处)折叠或打开Ext.Ajax.request({ .........【阅读全文】
发布时间:2016-02-23 14:41:54
console.log(typeof function(){return;});//functionconsole.log(typeof "a");//stringconsole.log(typeof 123);//numberconsole.log(typeof a);//undefinedconsole.log(typeof true);// booleanconsole.log(typeof NaN);//numberconsole.log(typeof !NaN);//booleanconsole.log(typeof {name:'大漠',age:'37'});//.........【阅读全文】
发布时间:2016-02-17 15:19:59
首先,我们会创建一个可在 cookie 变量中存储访问者姓名的函数:function setCookie(c_name,value,expiredays){var exdate=new Date()exdate.setDate(exdate.getDate()+expiredays)document.cookie=c_name+ "=" +escape(value)+((expiredays==null) ? "" : ";expires="+exdate.toGMTString())}之后,我们要创建另.........【阅读全文】