如何使用jquery檢查getJSON之後的結果json中是否存在鍵/值?jquery檢查是否存在json var
function myPush(){
$.getJSON("client.php?action=listen",function(d){
d.chat_msg = d.chat_msg.replace(/\\\"/g, "\"");
$('#display').prepend(d.chat_msg+'<br />');
if(d.failed != 'true'){ myPush(); }
});
}
基本上我需要一種方法來查看是否存在d.failed,如果=「真」,則不要繼續循環推動。