我有一个 php 链接给我,我可以用它来获取输出:
{foo:"fooName",fooLast:"fooLastName"}
我希望通过 ajax 在 jsp 文件中使用这个输出
我的脚本看起来像这样
function loadEmpName(empId){
var urlpath = "http://mysite.com:8080/searchByUid?"+empId;
$.ajax({
type: "GET",
url: urlpath,
dataType: "html",
contentType: "application/html; charset=utf-8",
success: function(result) {
//success here (most probably output to a <div> the result
},
error: function(error){
//errors here
}
});
}
我没有收到任何错误,但我没有得到所需的输出。这甚至可以开始吗?
我读到无法进行跨域 ajax 调用,我想知道是否是这种情况