我正在使用在 php 上发送 ajax 请求。在表单方法中使用以下代码。
rohit1.php
<form action="index1.php" onsubmit="callfunc()">
<span id="raj"></span>
<input type="submit" value="submit"></div>
</FORM>
在 javascript 中使用:callfun.js
function callfunc()
{
var http =new XMLHttpRequest();
var name=prompt('enter name of the form');
var name="rohit";
var url = "index1.php";
var s = document.getElementById('raj').innerHTML;
alert(http);
http.open("POST", "index1.php?name="+name, true);
http.onreadystatechange = function()
{
if(http.readyState == 4 && http.status == 200)
{
}
}
http.send();
}
当我使用这个功能时。然后在提交时这是重定向 index.php?label= 而不是 index.php?name= 我应该为此做什么???