我尝试使用 ajax 将 post 变量从 aspx 站点发送到 php 站点,但我没有得到答案。
ASPX 网站:
$.ajax ({
type: "POST",
url:"www.mySite.com/sqlExecute.php",
data: {'d':'empty'},
dataType: "text",
success: function(data) {
alert (data);
}
});
sqlExecute.php:
<?php
echo "Hello World";
?>
如果我添加错误函数:
error: function(jqXHR,textStatus,errorThrown) {
alert("jqXHR: "+jqXHR.responsetext+" textStatus: "+textStatus+" errorThrown: "+ errorThrown );}
});
我得到:
jqXHR: undefined textStatus: error errorThrown:
谢谢!