我剛剛在JavaScript中創建自定義對象,因此它可能很簡單。Javascript自定義對象 - IE中的預期標識符
我有這些對象:
function jsonObj(_id,_title,_class,_icon)
{
this.attr = new jsonAttrObj(_id,_title,_class);
this.data = new jsonDataObj(_title,_icon);
this.children = new Array();
};
function jsonAttrObj(_id, _title, _class)
{
this.id = _id;
this.title = _title;
this.class = _class;
};
function jsonDataObj(_title, _icon)
{
this.title = _title;
this.icon = _icon;
};
我把它用var jsonObject = new jsonObj(id,title,class,icon);
全部都是字符串瓦爾。
它們可以在Chrome和Firefox中正常工作,但不能在IE(8)中正常工作。 IE有錯誤 - 預期標識符。
Doh!我知道這很簡單:\謝謝! – Bob 2011-03-18 11:08:36