发一个AJAXRequest类!
2008-02-29 | 分类:技术学习
从大伟那里学到的,感谢~! 使用示例:
var obj = new AJAXRequest();
obj.method="get";
obj.url = "test.asp?action=test";
obj.callback = function (xmlhttp) {
//操作代码
}
obj.send();
路漫漫其修远兮,吾将上下而求索
从大伟那里学到的,感谢~! 使用示例:
var obj = new AJAXRequest();
obj.method="get";
obj.url = "test.asp?action=test";
obj.callback = function (xmlhttp) {
//操作代码
}
obj.send();