对于 jQuery 扩展,我通过读取 DOM 元素的属性来构建选项映射,如下所示:
$.each(this.attributes, function(i, att){
option[att.name] = att.value;
});
但Node.attributes
将所有名称转换为小写,而我的选项区分大小写。
这里最好的工作是什么?
对于 jQuery 扩展,我通过读取 DOM 元素的属性来构建选项映射,如下所示:
$.each(this.attributes, function(i, att){
option[att.name] = att.value;
});
但Node.attributes
将所有名称转换为小写,而我的选项区分大小写。
这里最好的工作是什么?