我正在尝试修改w3scools中的脚本,使用asp和ajax的组合来查询数据库并返回结果。
以下是代码:
<html>
<head>
<script type="text/javascript">
function showCustomer(str)
{
var xmlhttp;
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","getcustomer.asp?q="+str,true);
xmlhttp.send();
}
</script>
</head>
<body>
<form action="">
<select name="customers" onchange="showCustomer(this.value)">
<option value="">Select a customer:</option>
<option value="ALFKI">Alfreds Futterkiste</option>
</select>
</form>
<br />
<div id="txtHint">Customer info will be listed here...</div>
</body>
</html>
我想用2个输入字段替换选择字段。
有人可以告诉我如何修改javascript,以便输入值与查询字符串一起传递,并且需要在表单上更改以调用函数。
由于
答案 0 :(得分:2)
这完全取决于您希望页面的运行方式。你能更具体一点吗?
当您说'输入值'时,您的意思是文本框吗?
我假设在以下示例中您将有两个字段和一个用于提交的按钮:
<form action="">
<label for="MyTextBox1>Enter some text:</label>
<input type="text" id="MyTextBox1" />
<label for="MyTextBox1>Enter some text:</label>
<input type="text" id="MyTextBox2" />
<input type="button" onclick="showCustomer();" />
</form>
JavaScript函数的定义将从
更改function showCustomer(str)
到
function showCustomer()
您需要删除任何关联的str
代码。
要获取这些值,请使用document.getElementById
:
var val1 = document.getElementById("MyTextBox1").value);
var val2 = document.getElementById("MyTextBox1").value);
xmlhttp.open("GET","getcustomer.asp?q="+ val1 +"&r=" + val2 ,true);
这是非常粗糙和准备好的,但是一个很好的起点。
答案 1 :(得分:1)
取决于您希望如何做到这一点。现在,脚本本身由select
元素的change事件触发。如果替换该元素,则需要使用其他事件来触发脚本。也许一个按钮?如果是这种情况,那么最简单的方法就是使用jQuery:
Field 1: <input id="text1" type="text" />
Field 2: <input id="text2" type="text" />
<input id="buttonSend" type="button" value="Send" />
<script type="text/javascript">
$(document).ready(function() {
$('#buttonSend').click(function() {
$.get('getcustomer.asp?text1=' +
$('#text1').val() + '&text2=' + $('#text2').val()
);
});
});
</script>
您可以使用$.get()
函数执行更多操作,记录为here,这实际上只是$.ajax()
函数的简写,记录为here。前者较短,后者为您提供更多选择和控制。
(另请注意,如果您还想使用其他JavaScript库,则可能需要在上面的代码中将$
别名替换为jQuery
以避免混淆。)
请注意,这里的一个好处是它可以从标记中分离脚本(如果需要,可以将其放在单独的文件中)。作为整体设计范例,这通常比标记中的onchange="someFunctionCall()"
语法更受欢迎。