为了账号安全,请及时绑定邮箱和手机立即绑定

ajax 学习

标签:
JavaScript

js eval函数

eval() 函数可计算某个字符串,并执行其中的的 JavaScript 代码。

<script type="text/javascript">eval("x=10;y=20;document.write(x*y)")document.write(eval("2+2"))var x=10document.write(eval(x+17))</script>
200427

ajax 利用XMLHttpRequest对象,进行异步或者同步请求。

  function createXMLHtppRequest()  {    if(window.ActiveXOject)    {     xmlhttp = new ActiveXObject("Microsoft.XMLHTTP");    }    else if(window.XMLHttpRequest)    {      xmlhttp = new XMLHttpRequest();    }  }

方法获得一个XMLHttpRequest对象。

xmlhttp.open("GET","test1.txt",true);xmlhttp.send();

向服务器发送请求。

xmlhttp.onreadystatechange=function()  {  if (xmlhttp.readyState==4 && xmlhttp.status==200)    {    document.getElementById("myDiv").innerHTML=xmlhttp.responseText;    }  }xmlhttp.open("GET","test1.txt",true);xmlhttp.send();

当使用 async=true 时,请规定在响应处于 onreadystatechange 事件中的就绪状态时执行的函数:


xmlhttp.open("GET","test1.txt",false);xmlhttp.send();document.getElementById("myDiv").innerHTML=xmlhttp.responseText;

不推荐使用false:

点击查看更多内容
TA 点赞

若觉得本文不错,就分享一下吧!

评论

作者其他优质文章

正在加载中
  • 推荐
  • 评论
  • 收藏
  • 共同学习,写下你的评论
感谢您的支持,我会继续努力的~
扫码打赏,你说多少就多少
赞赏金额会直接到老师账户
支付方式
打开微信扫一扫,即可进行扫码打赏哦
今天注册有机会得

100积分直接送

付费专栏免费学

大额优惠券免费领

立即参与 放弃机会
意见反馈 帮助中心 APP下载
官方微信

举报

0/150
提交
取消