0
我有這個json字符串{"Table" : [{"subject" : "No Records are there to Display"}]}
。 如果我收到此數據,我想提醒NO Records Found
。任何建議。使用javascript驗證json字符串
注:我的鍵字段可以相應地改變(即)這裏是Subject
有的更像Details
,Description
。
我有這個json字符串{"Table" : [{"subject" : "No Records are there to Display"}]}
。 如果我收到此數據,我想提醒NO Records Found
。任何建議。使用javascript驗證json字符串
注:我的鍵字段可以相應地改變(即)這裏是Subject
有的更像Details
,Description
。
我會使用jquery或任何其他庫的JSON字符串轉換成JS對象:
var obj = jQuery.parseJSON('{"Table" : [{"subject" : "No Records are there to Display"}]}');
if (obj.Table[0].subject === "No Records are there to Display") {
alert("NO Records Found");
}
井obj.Table是JSON字典的陣列。不應該這樣做obj.Table [0] .subject ===「沒有記錄顯示」? – 2010-08-16 06:52:59
是的,你是對的。固定。 – 2010-08-16 15:04:10