4

我在这里的第一篇文章。我是 Java/AJAX 新手,但我有一些 PHP 经验。我正在尝试将 html 表单数据传递给 php 文件进行处理。目标是让 php 脚本处理表单数据并返回一个真/假标志。我正在尝试 AJAX,因为我不想刷新屏幕。根据 php 脚本的响应,弹出窗口将覆盖现有屏幕,并向用户提供信息。

我的 HTML 表单代码是:-

<form name="screen3" method="post" action="" id="scr3" />
<input type="image" src="images/proceed.jpg" alt="Proceed" id="proceed1" name="submit" value="Send" />
</form>            

我已经使用 javascript 从表单中重定向了提交按钮:-

<script type="text/javascript">
$(document).ready(function() {
$('#proceed1').click(function(e) {
    e.preventDefault();
    x=validateScreen3();
    if (x) {getFormData();}
        })
    });
</script>

到目前为止一切顺利,调用 validateScreen3() 并验证用户条目(不会让您厌烦脚本)。调用 getFormData 但这就是问题所在:-

function getFormData() {
var xmlhttp;
var emailAddress = document.getElementById("emailaddress").value;
var entryCode = document.getElementById("entrycode").value;
var acceptance = document.getElementById("acceptance").value;
var Sel = document.getElementById("sel").value;


xmlhttp=new XMLHttpRequest();
xmlhttp.open("POST","test1.php", true);
xmlhttp.setRequestHeader("Content-type","application/x-www-form-urlencoded");
xmlhttp.send("emailaddress="+emailAddress);
}

我已经确认变量数据正在传递给函数,但上面引用的 test1.php 脚本似乎没有被调用/执行。这是 test1.php 文件:-

<?php
$here = $_POST['emailaddress'];
echo '</div></div>';
if (!empty($here)) {
echo '<div style="position:absolute; top:100px; left:300px; width:400px; height:200px; background-color:#CCC; color:#000; z-index:50;">';
echo 'got the variable '.$here;
echo '</div>';
}
else {
echo '<div style="position:absolute; top:100px; left:300px; width:400px; height:200px; background-color:#CCC; color:#000; z-index:50;">';
echo 'DIDNT GET the variable '.$here;
echo '</div>';
}

?>

这些 div 都没有出现,并且从我能想到的每个测试中,根本没有调用该文件。任何想法或建议将不胜感激。

4

2 回答 2

1

您需要为XMLHttpRequest'sonreadystatechange事件添加事件处理程序。当 PHP 发送响应时,将触发此事件:

xmlhttp.onreadystatechange = function(response)
{
    if (this.readyState===4 && this.status===200)
    {//readyState 4 means request is finished
        document.body.innerHTML += response;//since it's an HTML response...
    }
};

但是由于您使用的是 jQ,因此您不必担心所有这些标头...只需检查$.ajax.

在某些时候,您可能想放弃 jQ,因为您必须支持旧版浏览器(IE<9,甚至 IE<8)。在这种情况下,这可能会有所帮助

澄清:
香草JS:

var xhr =new XMLHttpRequest();
xhr.setRequestHeader('Content-type', 'application/x-www-form-urlencoded');
xhr.onreadystatechange = function()
{
    if (this.readyState === 4 && this.status === 200)
    {//response is xhr property in vanilla JS
         document.body.innerHTML += this.responseText;
    }
    if (this.readyState === 4 && this.status !== 200)
    {//error in request
        console.log(this);//<-- check your console
        document.body.innerHTML += '<h1>Http error: ' + this.status;
    }
};
xhr.open("POST","test1.php", true);
xht.send("emailaddress="+emailAddress);

那应该工作得很好。如果由于某种原因没有,请使用 jQuery 尝试如下:

$.ajax({ url: 'test1.php',
         type: 'POST',
         data: {emailaddress: $('#emailaddress').val()},
         success: function(response)
         {
              document.body.innerHTML += response;
         }
});

如果这对您不起作用,那么您的 url 可能是错误的,或者运行您的 PHP 脚本的服务器在另一个域上,或者您必须发布后续问题。
希望这会有所帮助

于 2013-06-07T09:10:14.360 回答
0

您编写了 JavaScript 来发出 HTTP 请求,但还没有编写任何代码来使用响应中的数据。

您需要等到响应返回,然后使用xmlhttp.responseText.

请参阅使用 XMLHttpRequest

于 2013-06-07T09:05:37.863 回答