好吧,我有這段代碼從我從W3schools: -如何使用xmlhttp.open發送多個變量?
<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>
<option value="NORTS ">North/South</option>
<option value="WOLZA">Wolski Zajazd</option>
</select>
</form>
<br />
<div id="txtHint">Customer info will be listed here...</div>
</body>
</html>
現在我做了一個表格,我通過兩個變量,所以我怎麼會通過這個xmlhttp.open("GET","getcustomer.asp?q="+str,true);
兩個變量的值。因爲這件事沒有被包括在內。
你爲什麼不從事JQuery的,它簡單,因爲它可以... – rkosegi 2012-03-31 14:47:39
jQuery也可以做到這一點?你有任何我可以參考的源鏈接,並可以開始學習。 – 2012-03-31 14:49:36
這是怎麼回事:http://stackoverflow.com/questions/886878/can-i-get-more-variables-instead-of-string-in-jquery-ajax – rkosegi 2012-03-31 14:54:09