使用xmlhttp.open()如何向url添加多个参数?

时间:2010-06-17 22:01:11

标签: ajax variables get xmlhttprequest

我有这段代码。

xmlhttp.open("GET","getuser.php?q="+str,true);

where q="+str

我想传递第二个var我该怎么做?

2 个答案:

答案 0 :(得分:9)

xmlhttp.open("GET","getuser.php?q=" + q + "&r=" + r, true);

请注意,如果参数包含特殊字符,则无法正确转义参数。您可能希望使用类似encodeURIComponent(q)的内容。

答案 1 :(得分:2)

附加+ "&anotherVar=" + anotherString