我正在使用 ajax jquery 向 php 发送数据,作为数据我从 ajax 发送一个 url 作为字符串,其中包含特殊字符,即“&”所以我没有得到完整的 url,即我的数据直到 '&' 才检索到休息 id忽略且不显示。
下面是我的 ajax 和 php 代码:
dummytest.php
$temp=$_POST['address'];
echo $temp;
test.html (ajax 发送数据)
var send="http//192..../oracle/master.php?result=2&table=1"
$.ajax({
type: "POST",
url: "dummytest.php",
dataType: "text",
data: send,
success: onSuccess,
error: onError
});
我正在发送数据“发送”,即一个 url 作为字符串数据,但我只在我的 php 中接收到“&”,即
http//192..../oracle/master.php?result=2
谁能告诉我如何获得完整的数据/网址?