由于工作需要长期使用Ajax,一个页面重复的AJAX请求太多,于是封装起来,只需要编写回调函数
/*
-------------
使用方法:
1.ajaxrequest()函数执行准备的参数(1.请求地址2.发送数据字符串拼接3.type值可选get/post4.回调函数名称)
example:
ajaxrequest('login.php','user=1&pass=2','post',dealwith);
function dealwith()
{
if(myxmlhttprequest.readyState==4)
{
//mes的值是login.php页面返回的值
var mes= myxmlhttprequest.responseText;
//如果页面输出的是json值,还需要进行eval处理
var mes_obj=eval("("+mes+")");
}
}
tip:ajaxrequest()以post方式发送数据user=1&pass=2,当服务器端收到请求并返回数据,此时
dealwith()方法来处理返回的数据
*/
//Allvariable 回调函数使用
var myxmlhttprequest="";
//Createxmlhttp 创建Ajax引擎
function getxmlhttpobject()
{
var xmlhttprequest;
if(window.ActiveXObject){
xmlhttprequest=new ActiveXObject("Microsoft.XMLHTTP");
}
else{
xmlhttprequest=new XMLHttpRequest();
}
return xmlhttprequest;
}
//Createajaxrequest 发起请求
function ajaxrequest(url,data,type,callbackfunc)
{
myxmlhttprequest=getxmlhttpobject();
if (myxmlhttprequest)
{
myxmlhttprequest.open(type,url,true);
myxmlhttprequest.setRequestHeader("Content-Type", "application/x-www-form-urlencoded");
myxmlhttprequest.onreadystatechange=callbackfunc;
myxmlhttprequest.send(data);
}
}离线缓存的开启实例使用apache设置 1.apache配置文件搜索Addtype,我的addtype已经存在项目,如下 AddType application/x-compress .Z AddType application/x-gz...
<!doctype html> <html> <head> <meta charset="utf-8"> <title>无标题文档</title> <script type...
二期项目中生成的简历二维码是使用canvs生成的,微信浏览器中不能识别二维码,只能扫码。懒的换phpqrcode,于是转canvs。//设置一个url var url = "{yun:}$config.sy_weburl{/yun}/mingli/index....
维护老项目中客户提到一个页面中有6个表单以上,导致每次保存一个其他的数据全部丢失,自己比较懒没有全部更换为ajax.用户每次输入完成或者选择完成记录cookie,每次提交后加载页面完成初始化cookie即可。以下代码取自w3school比较完善,之前在其他博客使用的经常出现bug,这个比较推荐使用:...
查看文章前你需要了解以下2点://1.this指向的是windows对象,通过console.log(this)可以查看到对象包含所有的方法和属性//2.全局变量属于this对象的属性通过console.log(this)可以查看到对象包含我们设置的全局变量我们经常在创建相同结构的Js对象会重复的设...
//我们创建每个函数默认都有一个prototype(原型)属性,这个属性是一个对象 //1.我是普通的构造方法,我的属性叫实例属性,我的方法叫实例方法 /* function Box(name,age){ this.name=name; this.age=age; this.run...