JQuery Ajax data.d含義
實際應用中有代碼:
$.ajax({
url: 'EmailExist.action',
data: '{email:"' + email + '"}',
type: 'post',
dataType: 'json',
contentType: 'application/json; charset=utf8',
cache: false,
success: function(data) {
if (data.d) {
setTimeout(function() {
//$('#ctl00_holderLeft_txt_email').val('');
$('#tip_email').removeClass('validation-valid');
$('#tip_email').addClass('validation-error');
$('#tip_email').html('郵箱<strong$amp;>quot;$' + email + '</strong$amp;>quot;$已存在,請使用其他郵箱');
}, 10);
}
//else
//$('#tip_email').html("郵箱輸入成功"); 何問起
},
error: function(xhr) {
$('#tip_email').html(xhr.responseText);
}
});
其中的data.d解析如下:
d是asp.net webservice返回的json對象的屬性(包含你return 返回的內容),其他內容都放在d屬性裡面