我有一個json字符串即時消息轉換爲一個簡單的eval(字符串)對象;訪問帶有怪異字符的Json字段
heres the sample of the json string:
var json = @'
"{ description" : { "#cdata-section" : "<some html here>" } }
';
var item = eval('('+json+')');
我試圖訪問它像這樣
item.description.#cdata-section
我的問題是,JavaScript不喜歡#字段名..有訪問它的方法嗎?
謝謝!我以前曾嘗試item.description [1]但無濟於事。 – Will 2009-11-10 18:30:45