我有2个下拉菜单。在用户从每个选项中选择了一个选项后,我希望AJAX生成一个答案。我只需使用下面的示例下载一下即可完成此操作:
http://www.w3schools.com/php/php_ajax_database.asp
我已经按照一些建议尝试修改了2个下拉菜单的脚本,但是我没有成功。似乎数据没有发布到getuser.php页面。
我的HTML代码页如下:
<?php
require('includes/application_top.php');
?>
<!doctype html public "-//W3C//DTD HTML 4.01 Transitional//EN">
<html>
<head>
<script type="text/javascript">
function showUser(current_size, current_shoe)
{
if (str=="")
{
document.getElementById("txtHint").innerHTML="";
return;
}
if (window.XMLHttpRequest)
{// code for IE7+, Firefox, Chrome, Opera, Safari
xmlhttp=new XMLHttpRequest();
}
else
{// code for IE6, IE5
xmlhttp=new ActiveXObject("Microsoft.XMLHTTP");
}
xmlhttp.onreadystatechange=function()
{
if (xmlhttp.readyState==4 && xmlhttp.status==200)
{
document.getElementById("txtHint").innerHTML=xmlhttp.responseText;
}
}
xmlhttp.open("GET","getuser.php?size="+current_size"&shoe="current_shoe);
xmlhttp.send();
}
</script>
</head>
<body>
<?php
$query = "SELECT products_name, products_shoe_size FROM products_description WHERE language_id = 1 and products_shoe_size != '' ";
// Execute it, or return the error message if there's a problem.
$result = mysql_query($query) or die(mysql_error());
?>
<form>
<?php
$dropdown = "<select name='current_shoe' id='current_shoe'><option value=''>Select the model of your current shoes:</option>";
while($row = mysql_fetch_assoc($result)) {
$dropdown .= "\r\n<option value='{$row['products_shoe_size']}'>{$row['products_name']}</option>";
}
$dropdown .= "\r\n</select>";
echo $dropdown;
?>
<select name="current_size" id="current_size" onchange="showUser(Document.getElementById('current_size').value, Document.getElementById('current_shoe').value)">
<option value="">Select the size of your current shoes:</option>
<option value="2">2</option>
<option value="2.5">2.5</option>
<option value="3">3</option>
<option value="3.5">3.5</option>
<option value="4">4</option>
<option value="4.5">4.5</option>
<option value="5">5</option>
<option value="5.5">5.5</option>
<option value="6">6</option>
<option value="6.5">6.5</option>
<option value="7">7</option>
<option value="7.5">7.5</option>
<option value="8">8</option>
<option value="8.5">8.5</option>
<option value="9">9</option>
<option value="9.5">9.5</option>
<option value="10">10</option>
<option value="10.5">10.5</option>
<option value="11">11</option>
<option value="11.5">11.5</option>
<option value="12">12</option>
<option value="12.5">12.5</option>
<option value="13">13</option>
</select>
</form>
<br />
<div id="txtHint"><b>Sizing info will be listed here.</b></div>
</body>
</html>
<?php require(DIR_WS_INCLUDES . 'application_bottom.php'); ?>
我猜这个问题可以在其中一行代码中找到:
function showUser(current_size, current_shoe)
xmlhttp.open("GET","getuser.php?size="+current_size"&shoe="current_shoe);
<select name="current_size" id="current_size" onchange="showUser(Document.getElementById('current_size').value, Document.getElementById('current_shoe').value)">
如果有人知道我做错了什么,我会永远感激。我快跑完了头发。
答案 0 :(得分:1)
首先,当您在更改事件处理程序中调用showUser
函数时,需要使用document.getElementById
,而不是Document.getElementById
(请注意小写d
- 变量在JavaScript中区分大小写。)
其次,str
定义在哪里?在showUser
函数中,您检查它是否为空字符串,但如果未定义它将抛出ReferenceError
。
除此之外,你似乎永远不会关注xmlhttp
变量,因此它会泄漏到全局范围,这是不好的做法。您应该在其范围的顶部使用var
关键字声明每个变量。