DIV CSS 佈局教程網

JQuery Ajax data.d解析
編輯:JQuery特效代碼     
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屬性裡面
XML學習教程| jQuery入門知識| AJAX入門| Dreamweaver教程| Fireworks入門知識| SEO技巧| SEO優化集錦|
Copyright © DIV+CSS佈局教程網 All Rights Reserved