How to send multiple variable using xmlhttp.open?

寵の児 提交于 2020-01-01 21:51:47

问题


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.


回答1:


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;


来源:https://stackoverflow.com/questions/9956884/how-to-send-multiple-variable-using-xmlhttp-open

标签
易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!