摘要: function Ajax(url,funcsuccess,funcerror){ //创建XMLHttpRequest对象 var oAjax=null; if(window.XMLHttpRequest) { oAjax=new XMLHttpRequest(); } else { oAjax=new ActiveXObject("Microsoft.XMLHttp"); } //打开连接 oAjax.open('get',url,tru... 阅读全文
posted @ 2013-04-30 16:16 zhangchun 阅读(198) 评论(0) 推荐(0) 编辑