如何使用xmlhttp.open发送多个变量?

时间:2012-03-31 14:45:14

标签: ajax get

好的,我从W3schools获取了这段代码: -

<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);中两个变量的值。因为这件事没有被包括在内。

1 个答案:

答案 0 :(得分:2)

很容易。对于第一个变量,你使用?,对于之后的变量,你使用&amp ;.例如。

var variables = "name=David&string=Hello World";
xmlhttp.open("GET","getcustomer.asp?" + variables,true);

要从其他表单中获取变量,请将它们设置为ID(最简单的方法),然后执行

document.getElementById('theid').value;