我有三个代码,第一个是html
:
<html>
<head>
<script type = "text/javascript" src = "AJAX.js"></script>
</head>
<body>
<form method = "GET" >
<input type = "text" id ="a" ><br>
<input type = "text" id = "b"><br>
<input type = "button" value ="click" onclick = "process()"><br>
<textarea id = "underbutton" ></textarea><br>
</form>
<body>
</html>
现在javaScript(AJAX):
function process() {
if(xmlHttp.readyState==0 || xmlHttp.readyState==4){
a = document.getElementById("a").value;
b = document.getElementById("b").value;
xmlHttp.onreadystatechange = handleServerResponse;
xmlHttp.open("GET","file.php?a="+a+"&b="+b,true);
xmlHttp.send();
}
}
function handleServerResponse (){
if(xmlHttp.readyState==4 && xmlHttp.status==200)
{
response = xmlHttp.responseText;
document.getElementById("underbutton").innerHTML = response ;
}
}
现在php文件:
<?php
echo $_GET['a'].'<br>';
echo $_GET['b'].'<br>';
?>
一切正常,但问题是当我输入第一个 texbox (a) 单词hello
和第二个 (b) 代码&
并单击按钮时;它必须打印出来hello&
。
但它打印 hello
!
只是hello
没有&
。
我注意到我正在发送到 php 文件是这样的:
file.php?a=hello&b=&
。
最后一个&
必须是%26
所以要打印出来,&
我必须发送:
file.php?a=hello&b=%26
。
我该如何解决?