我正在尝试使用get请求调用php脚本并使用数据地址但是结果显示我正在调用的页面的来源。
我正在呼叫的页面是here 这是我的ajax函数,它将获取此页面
$( document ).ready(function() {
var address = document.getElementById("address");
$.ajax({
url: '/r10database/checkSystem/ManorWPG.php',
type: 'GET',
data: 'theaddress='+address.value,
cache: false,
success: function(output)
{
alert('success, server says '+output);
}, error: function()
{
alert('Something went wrong, saving system failed');
}
});
});
答案 0 :(得分:0)
$( document ).ready(function() {
var address = document.getElementById("address");
$.ajax({
url: '/r10database/checkSystem/ManorWPG.php',
type: 'GET',
data: 'theaddress='+address.value,
cache: false,
success: function(output)
{
alert('success, server says '+output);
}, error: function(error)
{
alert (error); // this is the change from the question
}
});
});
答案 1 :(得分:0)
将dataType作为带有大括号
的jsondata: {theaddress:address.value},
dataType:'json',
success: function(output)
{
alert('success, server says '+output);
}, error: function(xhr)
{
alert (xhr.status);
}
并将ManorWPG.php中的数据设为 $ _ GET [' theaddress']
**如果失败则分享xhr.status。