0

我正在使用在 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= 我应该为此做什么???

4

2 回答 2

0

只需尝试在函数return false末尾添加即可。callfunc()它将阻止表单的默认事件,并且不会充当标准表单。

于 2012-07-12T07:14:21.553 回答
0
<form action="index1.php" onsubmit="callfunc()">
    <span id="raj"></span>
    <input type="submit" value="submit"></div>
</form>

并且适当的 javascript 将如下所示:

function callfunc() {
    var name = "some name here"; // get this name from whereever you want
    window.location.href = "index1.php?name="+name;
    return false;
}

这应该适合你

于 2012-07-12T07:36:39.303 回答