.aspx代码
<html>
<head>
<script type="text/javascript">
function loadXMLDoc()
{
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("divResponse").innerHTML=xmlhttp.responseText;
}
}
xmlhttp.open("POST","POST.aspx",true);
xmlhttp.setRequestHeader("Content-type","application/x-www-form-urlencoded");
xmlhttp.send("param=test");
}
</script>
</head>
<body>
<h2>AJAX用POST方法传递参数</h2>
<button type="button" onclick="loadXMLDoc()">click</button>
<div ] -- POST方式
相关文章: