我有这段代码。
xmlhttp.open("GET","getuser.php?q="+str,true);
where q="+str
我想传递第二个var我该怎么做?
答案 0 :(得分:9)
xmlhttp.open("GET","getuser.php?q=" + q + "&r=" + r, true);
请注意,如果参数包含特殊字符,则无法正确转义参数。您可能希望使用类似encodeURIComponent(q)
的内容。
答案 1 :(得分:2)
附加+ "&anotherVar=" + anotherString
。