用户输入内容然后使用ajax程序向用户输出内容。哪个主要起作用,问题是通过参数将变量从我的脚本传递给远程函数。
当我将文本作为参数传递时,setTimeout
调用会混乱。但是当我在setTimeout
函数中输入它时,它可以工作:
function handleServerResponse(text){
if(xmlHttp.readyState==4){
if(xmlHttp.status==200){
xmlResponse = xmlHttp.responseXML; //izvlaci se xml sto smo dobili
xmlDocumentElement = xmlResponse.documentElement;
message = xmlDocumentElement.firstChild.data;
document.getElementById('underInput').innerHTML = message;
setTimeout("process(text)", 1000);
}else{
alert('Someting went wrong !');
}
}
}
整个代码:
<script type = "text/javascript">
var xmlHttp = createXmlHttpRequestObject();
function createXmlHttpRequestObject(){
var xmlHttp;
if(window.ActiveXObject){
try{
xmlHttp = new ActiveXObject("Microsoft.XMLHTTP");
}catch(e){
xmlHttp = false;
}
} else {
try{
xmlHttp = new XMLHttpRequest();
}catch(e){
xmlHttp = false;
}
}
if(!xmlHttp)
alert("Cant create that object !")
else
return xmlHttp;
}
function process(text){
//text = 'userInput';
if(xmlHttp.readyState==0 || xmlHttp.readyState==4){
food = encodeURIComponent(document.getElementById(text).value);
xmlHttp.open("GET", 'foodstore.php'+"?food="+food,true);
xmlHttp.onreadystatechange = function() {
handleServerResponse(text);
};
xmlHttp.send(null);
}else{
setTimeout("process(text)",1000);//cekaj 1s pa probaj opet
}
}
function handleServerResponse(text){
if(xmlHttp.readyState==4){
if(xmlHttp.status==200){
xmlResponse = xmlHttp.responseXML; //izvlaci se xml sto smo dobili
xmlDocumentElement = xmlResponse.documentElement;
message = xmlDocumentElement.firstChild.data;
document.getElementById('underInput').innerHTML = message;
setTimeout("process(text)", 1000);
}else{
alert('Someting went wrong !');
}
}
}
</script>
//*******************************************
<html>
<body onload = "process('userInput')">
<h3>The Chuff Bucker</h3>
Enter the food you would like to order:
<input type="text" id="userInput" />
<div id="underInput" />
</body>
</html>
答案 0 :(得分:2)
将字符串传递给setTimeout
时,将在全局范围内对其进行评估。没有全局text
变量,因此调用将失败。传递一个函数:
setTimeout(function() {
process(text);
}, 1000);
答案 1 :(得分:-1)
尝试删除&#34;&#34;在
setTimeout("process(text)", 1000);
[编辑参考] 而是喜欢这个
setTimeout(function(){
process(text);
}, 1000);
答案 2 :(得分:-2)
您的AJAX查询不必要地复杂。你能使用JQUERY了吗?它的语法非常简单,易于实现可能会解决您的问题。请看一下这个例子。
AJAX SYNTAX FOR JQUERY
var var_one = 'first post item here';
var var2 = $("#id_of_input_field").val();
///////// AJAX //////// AJAX //////////
$.ajax({
type: 'POST',
url: 'file_to_receive_post_vars.php',
data: {var_one:var_one, var2:var2},
success: function( response ){
alert('yay ajax!');
}//close succss params
});//close ajax
///////// AJAX //////// AJAX //////////