下面是我的代码,它不起作用,如何通过id从响应中获取数据? 请提供此问题的任何解决方案。
function loadStatus(uri,id)
{
waitingDialog.show('Loading', {dialogSize: 'sm'});
$.ajax({
method : "GET",
dataType : "text",
url : uri,
xhrFields : {
withCredentials : true
},
crossDomain : true,
contentType : "application/x-www-form-urlencoded;charset=UTF-8"
}).done(function(msg) {
waitingDialog.hide();
alert(msg);
// getting value by id
var contractID= $msg.filter('#contractID').text();
// getting value by id
var contractID=$(msg).find('#contractID').html();
alert(contractID);
});
return false;
}
答案 0 :(得分:0)
这取决于您希望从uri获得的数据类型。在您完成的函数中,您不应该查询html元素。只需提醒msg,看看你得到了什么。
答案 1 :(得分:0)
netstat -an
$ msg未在任何地方定义...您使用的下一行
var contractID= $msg.filter('#contractID').text();
是你的意思吗?