按照以下线程的示例和答案后
我已经构建了一个类似的测试表单,以便在提交时学习ajax请求。你的猜测是正确的,它对我没有用(没有警报弹出)。
我的testajax.php格式为:
<script src="https://ajax.googleapis.com/ajax/libs/jquery/2.1.4/jquery.min.js"></script>
<script src="../test.js"></script>
<form name="feedback" id="idForm" action="(myurl)/testajax.php" method="post">
<input id="name" type="text">
<input type="submit" name="feedbacksent" value="Send" />
</p>
</form>
我的test.js:
// this is the id of the form
$("#idForm").submit(function(e) {
var url = "(myurl)/testajaxinput.php"; // the script where you handle the form input.
e.preventDefault(); // avoid to execute the actual submit of the form.
警报(&#34; BLA&#34); //无效
$.ajax({
type: "POST",
url: url,
data: $("#idForm").serialize(), // serializes the form's elements.
success: function(data)
{
alert(data); // show response from the php script.
}
});
});
我应该处理输入的testajaxinput.php:
if (isset($_POST['feedbacksent'])){
echo "<h1>".WORKS."</h1>";
}
答案 0 :(得分:1)
试试这个:
if (isset($_POST['feedbacksent'])){
echo "<h1>".WORKS."</h1>";
return true;
}
然后尝试alert
并检查控制台是否有任何错误。