1:清空数组最高效的做法
parentThis.PaperQuestionStrategiesList.length = 0;
2:push and pop
parentThis.PaperQuestionStrategiesList.push(questionStrategy);
3:字符串索引
parentThis.QuestionUnits[i] = parentThis.QuestionUnits[item.Id] = item;
从本质上来说,QuestionUnits[item.Id],实际上是为QuestionUnits对象创建了一个属性,该属性名为item.Id,如:
Id 为 ss,item值为”dd”。
那么,如何来遍历一个jq类的所有属性呢?,可以如下:
$.each(obj, function(key, element) { alert('key: ' + key + '\n' + 'value: ' + element); });
或者:
for(var key in obj) { alert('key: ' + key + '\n' + 'value: ' + obj[key]); }
本文基于Creative Commons Attribution 2.5 China Mainland License发布,欢迎转载,演绎或用于商业目的,但是必须保留本文的署名http://www.cnblogs.com/luminji(包含链接)。如您有任何疑问或者授权方面的协商,请给我留言。