jQueryでajaxを使用して型のデータを取得しようとしているjson
ので、次のコードを書きました:
$.ajax({
url: link.attr('href'),
type: 'post',
data: 'post=true',
dataType: 'json',
success: function(data){
if (data.length > 0) {
ldLayer.fadeOut('slow');
}else{
alert('no data');
}
}
});
しかし、その意志data
は真実であり、実行されます!null
if
ldLayer.fadeOut('slow');
更新:console.log(data)
結果は次
のとおりです。[null]