How to send multiple variable using xmlhttp.open?

2019-04-17 10:35发布

Ok i have this piece of code from which i took from 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>

Now i made a form and i am passing two variables, so how i will pass the value of two variables in this xmlhttp.open("GET","getcustomer.asp?q="+str,true);. As this thing has not been included.

标签: ajax get
1条回答
Evening l夕情丶
2楼-- · 2019-04-17 10:49

It is easy. for the first variable, you use ?, for variables after that, you use &. For example.

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

And to get variables form other forms, set them to have ID's (easiest way), and do

document.getElementById('theid').value;
查看更多
登录 后发表回答