当点击提交按钮时,ajax工作并调用php页面(无刷新),但是当按下输入时刷新页面和脚本不起作用,并且页面URL末尾只显示?txtname=(INPUTED TEXT)
。
ajax代码:
var time_variable;
var root2 = location.protocol + '//' + location.host + '/testing.php';
function getXMLObject() //XML OBJECT
{
var xmlHttp = false;
try {
xmlHttp = new ActiveXObject("Msxml2.XMLHTTP") // For Old Microsoft Browsers
}
catch (e) {
try {
xmlHttp = new ActiveXObject("Microsoft.XMLHTTP") // For Microsoft IE 6.0+
}
catch (e2) {
xmlHttp = false // No Browser accepts the XMLHTTP Object then false
}
}var root = location.protocol + '//' + location.host;
if (!xmlHttp && typeof XMLHttpRequest != 'undefined') {
xmlHttp = new XMLHttpRequest(); //For Mozilla, Opera Browsers
}
return xmlHttp; // Mandatory Statement returning the ajax object created
}
var xmlhttp = new getXMLObject(); //xmlhttp holds the ajax object
function ajaxFunction() {
var getdate = new Date(); //Used to prevent caching during ajax call
if(xmlhttp) {
var txtname = document.getElementById("txtname");
xmlhttp.open("POST",root2,true); //calling testing.php using POST method
xmlhttp.onreadystatechange = handleServerResponse;
xmlhttp.setRequestHeader('Content-Type', 'application/x-www-form-urlencoded');
xmlhttp.send("txtname=" + txtname.value); //Posting txtname to PHP File
}
}
function handleServerResponse() {
if (xmlhttp.readyState == 4) {
if(xmlhttp.status == 200) {
document.getElementById("message").innerHTML=xmlhttp.responseText; //Update the HTML Form element
}
else {
alert("Error during AJAX call. Please try again");
}
}
}
html部分:
<body>
<form name="myForm">
<table>
<tr>
<td>Enter Name</td>
<td><input type="text" name="txtname" id="txtname" value="<?php echo $f ?>" /></td>
</tr>
<tr>
<td colspan="2"><input type="button" value="Submit" onclick="ajaxFunction();" /></td>
</tr>
</table>
</form>
<div id="message" name="message"></div>
</body>
答案 0 :(得分:3)
您需要在表单中添加onsumbit
属性:
<form name="myForm" onsubmit="ajaxFunction(); return false;">
return false;
是为了防止页面刷新(即真正提交而不是ajax)。
答案 1 :(得分:2)
应用处理程序提交表单,而不是单击按钮
<form name="myForm" onsubmit="ajaxFunction();">
这样,您的功能在任何情况下都可以使用,可以通过输入或按钮点击提交表单。
答案 2 :(得分:1)
替换
<form name="myForm">
带
<form name="myForm" onsubmit="ajaxFunction();return false;">
因为表单将使用ENTER在页面本身上使用GET方法提交自己,除非您在ENTER按键上定义要执行的操作。