以下是可以完成的许多方法的概述,供我自己以及您参考:)这些函数返回属性名称及其值的哈希值。
香草 JS:
function getAttributes ( node ) {
var i,
attributeNodes = node.attributes,
length = attributeNodes.length,
attrs = {};
for ( i = 0; i < length; i++ ) attrs[attributeNodes[i].name] = attributeNodes[i].value;
return attrs;
}
Vanilla JS with Array.reduce
适用于支持 ES 5.1 (2011) 的浏览器。需要 IE9+,在 IE8 中不起作用。
function getAttributes ( node ) {
var attributeNodeArray = Array.prototype.slice.call( node.attributes );
return attributeNodeArray.reduce( function ( attrs, attribute ) {
attrs[attribute.name] = attribute.value;
return attrs;
}, {} );
}
jQuery
此函数需要一个 jQuery 对象,而不是 DOM 元素。
function getAttributes ( $node ) {
var attrs = {};
$.each( $node[0].attributes, function ( index, attribute ) {
attrs[attribute.name] = attribute.value;
} );
return attrs;
}
强调
也适用于lodash。
function getAttributes ( node ) {
return _.reduce( node.attributes, function ( attrs, attribute ) {
attrs[attribute.name] = attribute.value;
return attrs;
}, {} );
}
洛达什
甚至比Underscore版本更简洁,但仅适用于lodash,不适用于Underscore。需要IE9+,在IE8中有bug。为那一@AlJey而感到高兴。
function getAttributes ( node ) {
return _.transform( node.attributes, function ( attrs, attribute ) {
attrs[attribute.name] = attribute.value;
}, {} );
}
测试页
在JS Bin,有一个涵盖所有这些功能的实时测试页面。该测试包括布尔属性 () 和枚举属性 ()。hidden
contenteditable=""