欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页  >  后端开发

PHP与Ajax调用

程序员文章站 2022-05-05 10:14:05
...
var url = "../IPSearch.php";//要发送到的URL
//alert(document.getElementById("DepCode").value);
//alert(document.getElementById("QueryType").value);
var queryString ="DeptCode"+ "=" +DeptCode;
queryString+= "&QueryType" + "=" + QueryType;//如果有多个参数需要传递,则用&符号连接
xmlHttp.open("post", url, true);

xmlHttp.onreadystatechange = showIPSearchResult;
xmlHttp.setRequestHeader("Content-Type", "application/x-www-form-urlencoded;");
xmlHttp.send(queryString);

相关标签: PHP与Ajax调用