摘要:
异步是AJAX代码运行中的时候其他代码一样可以运行 默认是true: 异步,false: 同步 $.ajax({ type: "post", url: "path", cache:false, async:false, dataType: ($.browser.msie) ? "text" : "x 阅读全文
摘要:
window.onload = function(){ document.getElementById('username').onblur = function(){ var name = document.getElementById('username').value; name = enco 阅读全文
摘要:
window.onload = function(){ document.getElementById('username').onblur = function(){ var name = document.getElementById('username').value; name = enco 阅读全文
摘要:
window.onload = function(){ document.getElementById('btn').onclick = function(){ var req = new XMLHttpRequest(); req.open('get', 'demo.php'); //建立服务器连 阅读全文
摘要:
Ajax: Asynchronous Javascript And XML 异步加载js和xml 客户端请求的地址交给ajax对象,ajax对象去服务器获取数据,ajax对象获取数据后再交给客户端,这样浏览器界面没有跳转所以用户体验比较好 AJAX的核心就是js的XmlHttpRequest对象 / 阅读全文
摘要:
//兼容处理获取ajax对象 var req = ''; if (window.XMLHttpRequest) req = new XMLHttpRequest(); else req = new ActiveXObject("Msxml2.XMLHTTP"); //建立连接 req.open('g 阅读全文
摘要:
Ajax: Asynchronous Javascript And XML 异步加载js和xml 客户端请求的地址交给ajax对象,ajax对象去服务器获取数据,ajax对象获取数据后再交给客户端,这样浏览器界面没有跳转所以用户体验比较好 AJAX的核心就是js的XmlHttpRequest对象 / 阅读全文