.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方式

相关文章:

  • 2021-07-06
  • 2021-11-04
  • 2022-12-23
  • 2022-12-23
  • 2022-12-23
  • 2022-12-23
  • 2022-12-23
  • 2022-12-23
猜你喜欢
  • 2022-12-23
  • 2022-12-23
  • 2022-12-23
  • 2022-12-23
  • 2021-05-19
  • 2021-05-11
相关资源
相似解决方案