我正在尝试设置默认值并获取页面加载记录。
得到选项更改记录更改下拉列表中的值
<select id="maxDaysSinceAdded" name="shorting" onchange="showUser(this.value)">
<option value="1">Most Recent</option>
<option value="2">Lowest Price</option>
<option value="3">Highst Price</option>
</select>
支持在更改下拉菜单时获取数据的 java 脚本
<script type="text/javascript">
function showUser(str)
{
if (str=="")
{
document.getElementById("txtHint").innerHTML="";
return;
}
if (window.XMLHttpRequest)
{
xmlhttp=new XMLHttpRequest();
}
else
{
xmlhttp=new ActiveXObject("Microsoft.XMLHTTP");
}
xmlhttp.onreadystatechange=function()
{
if (xmlhttp.readyState==4 && xmlhttp.status==200)
{
document.getElementById("txtHint").innerHTML=xmlhttp.responseText;
}
}
xmlhttp.open("GET","productlistajax.php?q="+str,true);
xmlhttp.send();
}
</script>
显示 div 内的记录
<div id="txtHint"><b></b></div>
请让我知道如何设置默认值并获取加载记录。它在更改下拉菜单时效果很好,但想知道如何在加载时显示任何选项的记录。
谢谢你的帮助。丽兹