ajax代码示例
Posted 孤舟残月浅笑嫣
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了ajax代码示例相关的知识,希望对你有一定的参考价值。
function loadXMLDoc(idName,url,sendOut) { var xmlhttp; if (window.XMLHttpRequest) {// code for IE7+, Firefox, Chrome, Opera, Safari xmlhttp=new XMLHttpRequest(); } else {// code for IE6, IE5 xmlhttp=new ActiveXObject("Microsoft.XMLHTTP"); } xmlhttp.onreadystatechange=function() { if (xmlhttp.readyState==4 && xmlhttp.status==200) { document.getElementById(idName).innerhtml=xmlhttp.responseText; } } xmlhttp.open("POST",url,true); xmlhttp.setRequestHeader("Content-type","application/x-www-form-urlencoded"); xmlhttp.send(sendOut); }
其中idName是要显示接收内容的元素id,url是要链接的远程文件地址,sendOut发送的内容。
以上是关于ajax代码示例的主要内容,如果未能解决你的问题,请参考以下文章