Ajax
Posted 侯光辉
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了Ajax相关的知识,希望对你有一定的参考价值。
1.兼容写法
<script> //用没有定义的变量-保存 //用没有定义的属性-undifind window.onload = function(){ var oBtn = document.getElementById(‘btn1‘); oBtn.onclick = function(){ //兼容IE6 var oAjax = window.XMLHttpRequest?new XMLHttpRequest():new ActiveXObject(‘Microsoft.XMLHTTP‘); oAjax.open(‘GET‘,‘https://cdn.bootcss.com/jquery/3.2.1/core.js‘,true); oAjax.send(); oAjax.onreadystatechange = function() { if(oAjax.readyState == 4)//通讯完成 { if(oAjax.status==200)//通讯成功 { alert(oAjax.responseText); } else { alert(‘fail‘); } } } } } </script>
以上是关于Ajax的主要内容,如果未能解决你的问题,请参考以下文章