요소를 살펴보고 해당 요소의 모든 속성을 가져 와서 출력하려고합니다. 예를 들어 태그에 3 개 이상의 속성이있을 수 있으며 알 수 없으며 이러한 속성의 이름과 값을 가져와야합니다. 나는 다음과 같이 뭔가를 생각하고 있었다.
$(this).attr().each(function(index, element) {
var name = $(this).name;
var value = $(this).value;
//Do something with name and value...
});
이것이 가능하다면 누구든지 말할 수 있습니까? 그렇다면 올바른 구문은 무엇입니까?
답변
이 attributes
숙소에는 다음이 모두 포함되어 있습니다.
$(this).each(function() {
$.each(this.attributes, function() {
// this.attributes is not a plain object, but an array
// of attribute nodes, which contain both the name and value
if(this.specified) {
console.log(this.name, this.value);
}
});
});
당신이 할 수있는 일은 모든 속성의 일반 객체를 얻는 .attr
것처럼 호출 할 수 있도록 확장 하는 것입니다 .attr()
.
(function(old) {
$.fn.attr = function() {
if(arguments.length === 0) {
if(this.length === 0) {
return null;
}
var obj = {};
$.each(this[0].attributes, function() {
if(this.specified) {
obj[this.name] = this.value;
}
});
return obj;
}
return old.apply(this, arguments);
};
})($.fn.attr);
용법:
var $div = $("<div data-a='1' id='b'>");
$div.attr(); // { "data-a": "1", "id": "b" }
답변
다음은 내 자신의 참조뿐만 아니라 수행 할 수있는 많은 방법에 대한 개요입니다. 🙂 함수는 속성 이름과 값의 해시를 반환합니다.
바닐라 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;
}
Array.reduce가 포함 된 바닐라 JS
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
이 함수는 DOM 요소가 아닌 jQuery 객체를 필요로합니다.
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 버전보다 훨씬 간결하지만 Underscore가 아닌 lodash에서만 작동합니다. IE9 +가 필요하며 IE8에서는 버그가 있습니다. 그 중 하나 를 @AlJey 에게 전합니다 .
function getAttributes ( node ) {
return _.transform( node.attributes, function ( attrs, attribute ) {
attrs[attribute.name] = attribute.value;
}, {} );
}
테스트 페이지
JS Bin에는 이러한 모든 기능을 다루는 라이브 테스트 페이지가 있습니다. 테스트에는 부울 속성 ( hidden
) 및 열거 속성 ( contenteditable=""
)이 포함됩니다.
답변
디버깅 스크립트 (해시 변경으로 위의 답변을 기반으로 한 jquery 솔루션)
function getAttributes ( $node ) {
$.each( $node[0].attributes, function ( index, attribute ) {
console.log(attribute.name+':'+attribute.value);
} );
}
getAttributes($(this)); // find out what attributes are available
답변
LoDash를 사용하면 다음과 같이 간단하게 수행 할 수 있습니다.
_.transform(this.attributes, function (result, item) {
item.specified && (result[item.name] = item.value);
}, {});
답변
자바 스크립트 함수를 사용하면 NamedArrayFormat에서 요소의 모든 속성을보다 쉽게 얻을 수 있습니다.
$("#myTestDiv").click(function(){
var attrs = document.getElementById("myTestDiv").attributes;
$.each(attrs,function(i,elem){
$("#attrs").html( $("#attrs").html()+"<br><b>"+elem.name+"</b>:<i>"+elem.value+"</i>");
});
});
<script src="https://ajax.googleapis.com/ajax/libs/jquery/1.11.0/jquery.min.js"></script>
<div id="myTestDiv" ekind="div" etype="text" name="stack">
click This
</div>
<div id="attrs">Attributes are <div>
답변
Underscore.js의 간단한 솔루션
예를 들어 : 부모님이 수업을 가지고있는 모든 링크 텍스트 가져 오기 someClass
_.pluck($('.someClass').find('a'), 'text');
답변
나의 제안:
$.fn.attrs = function (fnc) {
var obj = {};
$.each(this[0].attributes, function() {
if(this.name == 'value') return; // Avoid someone (optional)
if(this.specified) obj[this.name] = this.value;
});
return obj;
}
var a = $ (el) .attrs ();