Answers:
如果要使用.attribute
JavaScript进行编程访问,则应始终使用直接形式(但请参见下面的quirksmode链接)。它应该正确处理不同类型的属性(请考虑“ onload”)。
当您希望按原样处理DOM时,请使用getAttribute
/ setAttribute
(例如,仅文字文本)。不同的浏览器将两者混淆。请参阅怪癖模式:属性(兼容性)。
从Javascript:权威指南中,它可以使事情变得清晰。它注意到HTML文档的HTMLElement对象定义了与所有标准HTML属性相对应的JS属性。
因此,您只需要setAttribute
用于非标准属性。
例:
node.className = 'test'; // works
node.frameborder = '0'; // doesn't work - non standard attribute
node.setAttribute('frameborder', '0'); // works
node.frameborder
,因此您必须使用getAttribute才能取回值。
frameBorder
直接设置没有任何问题,但请注意大写。有人认为驼峰写出HTML属性的JavaScript等效项是个好主意。我没有为此找到任何规范,但是网络似乎同意这是12种特定情况的问题(至少对于HTML 4)。例如,请参见以下帖子:drupal.org/node/1420706#comment-6423420
usemap
属性不能用于图像动态创建地图时使用点符号来设置。它要求img.setAttribute('usemap', "#MapName");
您的答案是否暗示usemap
因此是“非标准”?
先前的答案均不完整,且大多数包含错误信息。
有三种访问JavaScript中DOM 元素的属性的方法。只要您了解如何使用它们,这三者就可以在现代浏览器中可靠地工作。
element.attributes
元素有一个属性的属性,它返回一个活的NamedNodeMap的的Attr对象。在浏览器之间,此集合的索引可能有所不同。因此,不能保证顺序。NamedNodeMap
具有添加和删除属性的方法(分别为getNamedItem
和setNamedItem
)。
请注意,尽管XML明确区分大小写,但DOM规范要求将字符串名称标准化,因此传递给getNamedItem
其的名称实际上不区分大小写。
var div = document.getElementsByTagName('div')[0];
//you can look up specific attributes
var classAttr = div.attributes.getNamedItem('CLASS');
document.write('attributes.getNamedItem() Name: ' + classAttr.name + ' Value: ' + classAttr.value + '<br>');
//you can enumerate all defined attributes
for(var i = 0; i < div.attributes.length; i++) {
var attr = div.attributes[i];
document.write('attributes[] Name: ' + attr.name + ' Value: ' + attr.value + '<br>');
}
//create custom attribute
var customAttr = document.createAttribute('customTest');
customAttr.value = '567';
div.attributes.setNamedItem(customAttr);
//retreive custom attribute
customAttr = div.attributes.getNamedItem('customTest');
document.write('attributes.getNamedItem() Name: ' + customAttr.name + ' Value: ' + customAttr.value + '<br>');
<div class="class1" id="main" data-test="stuff" nonStandard="1234"></div>
element.getAttribute
&element.setAttribute
这些方法直接存在于上,Element
无需访问attributes
及其方法,但执行相同的功能。
同样,请注意字符串名称不区分大小写。
var div = document.getElementsByTagName('div')[0];
//get specific attributes
document.write('Name: class Value: ' + div.getAttribute('class') + '<br>');
document.write('Name: ID Value: ' + div.getAttribute('ID') + '<br>');
document.write('Name: DATA-TEST Value: ' + div.getAttribute('DATA-TEST') + '<br>');
document.write('Name: nonStandard Value: ' + div.getAttribute('nonStandard') + '<br>');
//create custom attribute
div.setAttribute('customTest', '567');
//retreive custom attribute
document.write('Name: customTest Value: ' + div.getAttribute('customTest') + '<br>');
<div class="class1" id="main" data-test="stuff" nonStandard="1234"></div>
element.id
可以使用DOM对象上的便捷属性来访问许多属性。存在哪些属性取决于DOM节点的类型,而不取决于HTML中定义的属性。这些属性是在所讨论的DOM对象原型链中的某个位置定义的。定义的特定属性将取决于您正在访问的Element的类型。例如,className
和在所有作为元素的DOM节点(即不是文本或注释节点)上id
定义Element
并存在。但是value
更狭窄。它HTMLInputElement
在其他元素上定义且可能不存在。
请注意,JavaScript属性区分大小写。尽管大多数属性将使用小写字母,但有些是camelCase。因此,请务必检查规格以确保。
此“图表”捕获了这些DOM对象的一部分原型链。它甚至还没有完成,但是它捕获了整个结构。
____________Node___________
| | |
Element Text Comment
| |
HTMLElement SVGElement
| |
HTMLInputElement HTMLSpanElement
var div = document.getElementsByTagName('div')[0];
//get specific attributes
document.write('Name: class Value: ' + div.className + '<br>');
document.write('Name: id Value: ' + div.id + '<br>');
document.write('Name: ID Value: ' + div.ID + '<br>'); //undefined
document.write('Name: data-test Value: ' + div.dataset.test + '<br>'); //.dataset is a special case
document.write('Name: nonStandard Value: ' + div.nonStandard + '<br>'); //undefined
<div class="class1" id="main" data-test="stuff" nonStandard="1234"></div>
警告:这是对HTML规范定义和现代浏览器如何处理属性的解释。我没有尝试解决过时的浏览器的局限性。如果您需要支持旧版浏览器,则除了这些信息外,您还需要了解这些浏览器中的损坏之处。
我发现有一种情况setAttribute
是更改ARIA属性时有必要,因为没有相应的属性。例如
x.setAttribute('aria-label', 'Test');
x.getAttribute('aria-label');
没有x.arialabel
或没有类似的东西,因此您必须使用setAttribute。
编辑:x [“ aria-label”]不起作用。您确实确实需要setAttribute。
x.getAttribute('aria-label')
null
x["aria-label"] = "Test"
"Test"
x.getAttribute('aria-label')
null
x.setAttribute('aria-label', 'Test2')
undefined
x["aria-label"]
"Test"
x.getAttribute('aria-label')
"Test2"
这些答案并没有真正解决属性和属性之间的巨大混淆。另外,根据Java语言原型,有时您可以使用元素的属性来访问属性,有时则不能。
首先,您必须记住an HTMLElement
是一个Javascript对象。像所有对象一样,它们具有属性。当然,您可以创建一个几乎称为您想要的任何内部属性HTMLElement
,但它不必对DOM做任何事情(页面上的内容)。点符号(.
)用于属性。现在,有一些特殊的属性映射到属性,并在当时或写,只有4所保证的(稍后更多)。
所有都HTMLElement
包含一个名为的属性attributes
。HTMLElement.attributes
是与DOM中的元素相关的活动 NamedNodeMap
对象。“实时”表示当节点在DOM中更改时,它们在JavaScript端更改,反之亦然。在这种情况下,DOM属性就是所讨论的节点。A Node
具有.nodeValue
可以更改的属性。NamedNodeMap
对象具有一个称为的功能setNamedItem
,您可以在其中更改整个节点。您也可以通过键直接访问该节点。例如,您可以说.attributes["dir"]
与相同.attributes.getNamedItem('dir');
(旁注,NamedNodeMap
不区分大小写,因此您也可以传递'DIR'
);
直接有一个类似的函数可以在HTMLElement
其中调用setAttribute
,如果不存在该节点并设置,它将自动创建一个节点nodeValue
。也有一些你可以直接访问作为属性的属性HTMLElement
通过特殊性能,如dir
。这是它的外观的粗略映射:
HTMLElement {
attributes: {
setNamedItem: function(attr, newAttr) {
this[attr] = newAttr;
},
getNamedItem: function(attr) {
return this[attr];
},
myAttribute1: {
nodeName: 'myAttribute1',
nodeValue: 'myNodeValue1'
},
myAttribute2: {
nodeName: 'myAttribute2',
nodeValue: 'myNodeValue2'
},
}
setAttribute: function(attr, value) {
let item = this.attributes.getNamedItem(attr);
if (!item) {
item = document.createAttribute(attr);
this.attributes.setNamedItem(attr, item);
}
item.nodeValue = value;
},
getAttribute: function(attr) {
return this.attributes[attr] && this.attributes[attr].nodeValue;
},
dir: // Special map to attributes.dir.nodeValue || ''
id: // Special map to attributes.id.nodeValue || ''
className: // Special map to attributes.class.nodeValue || ''
lang: // Special map to attributes.lang.nodeValue || ''
}
因此,您可以通过dir
6种方式更改属性:
// 1. Replace the node with setNamedItem
const newAttribute = document.createAttribute('dir');
newAttribute.nodeValue = 'rtl';
element.attributes.setNamedItem(newAttribute);
// 2. Replace the node by property name;
const newAttribute2 = document.createAttribute('dir');
newAttribute2.nodeValue = 'rtl';
element.attributes['dir'] = newAttribute2;
// OR
element.attributes.dir = newAttribute2;
// 3. Access node with getNamedItem and update nodeValue
// Attribute must already exist!!!
element.attributes.getNamedItem('dir').nodeValue = 'rtl';
// 4. Access node by property update nodeValue
// Attribute must already exist!!!
element.attributes['dir'].nodeValue = 'rtl';
// OR
element.attributes.dir.nodeValue = 'rtl';
// 5. use setAttribute()
element.setAttribute('dir', 'rtl');
// 6. use the UNIQUELY SPECIAL dir property
element["dir"] = 'rtl';
element.dir = 'rtl';
您可以更新方法#1-5的所有属性,但只dir
,id
,lang
,并className
与方法#6。
HTMLElement
具有这4个特殊属性。一些元素是HTMLElement
具有更多映射属性的扩展类。例如,HTMLAnchorElement
有HTMLAnchorElement.href
,HTMLAnchorElement.rel
和HTMLAnchorElement.target
。但是要当心,如果您在没有特殊属性的元素上设置这些属性(例如在上HTMLTableElement
),则这些属性不会更改,它们只是普通的自定义属性。为了更好地理解,下面是其继承的示例:
HTMLAnchorElement extends HTMLElement {
// inherits all of HTMLElement
href: // Special map to attributes.href.nodeValue || ''
target: // Special map to attributes.target.nodeValue || ''
rel: // Special map to attributes.ref.nodeValue || ''
}
现在是一个大警告:与所有Javascript对象一样,您可以添加自定义属性。但是,这些不会改变DOM上的任何内容。你可以做:
const newElement = document.createElement('div');
// THIS WILL NOT CHANGE THE ATTRIBUTE
newElement.display = 'block';
但这与
newElement.myCustomDisplayAttribute = 'block';
这意味着添加自定义属性将不会链接到.attributes[attr].nodeValue
。
性能
我建立了一个jsperf测试用例来显示差异:https ://jsperf.com/set-attribute-comparison 。基本上,为了:
dir
,id
,className
)。element.attributes.ATTRIBUTENAME.nodeValue =
element.attributes.getNamedItem(ATTRIBUTENAME).nodeValue = newValue
element.attributes.ATTRIBUTENAME = newNode
element.attributes.setNamedItem(ATTRIBUTENAME) = newNode
结论(TL; DR)
从使用特殊的属性映射HTMLElement
:element.dir
,element.id
, element.className
,或element.lang
。
如果您100%确定元素是HTMLElement
具有特殊属性的扩展,请使用该特殊映射。(您可以通过检查if (element instanceof HTMLAnchorElement)
)。
如果您100%确定该属性已经存在,请使用element.attributes.ATTRIBUTENAME.nodeValue = newValue
。
如果不是,请使用setAttribute()
。
classList
100%保证存在,但这不是字符串属性,而是活动DOMTokenList
对象。.className
直接设置比操作classList
要快,但是您会覆盖整个内容。
.value
,您正在更改的内部值HTMLInputElement
,该值随后会反映在属性上。他们也不必如此string
。.valueAsNumber
将在value
内部进行更改,其string
形式将出现在value
属性中。 developer.mozilla.org/en-US/docs/Web/HTML/Attributes
在一种情况下,最好使用setAttribute:
var posElem = document.getElementById('animation');
var newStyle = 'background: ' + newBack + ';' +
'color: ' + newColor + ';' +
'border: ' + newBorder + ';';
if(typeof(posElem.style.cssText) != 'undefined') {
posElem.style.cssText = newStyle;
} else {
posElem.setAttribute('style', newStyle);
}
posElem.style = newStyle
在所有浏览器(Firefox中为我工作)不工作?是否仅出于性能原因而setAttribute
避免重涂?是posElem.style.cssText = newStyle
更perfomrant然后posElem.style = newStyle
?
在元素上设置属性(例如类)的方法:1. el.className =字符串2. el.setAttribute('class',string)3. el.attributes.setNamedItem(object)4. el.setAttributeNode(node)
我做了一个简单的基准测试(在这里)
似乎setAttributeNode比使用setAttribute快约3倍。
因此,如果性能存在问题,请使用“ setAttributeNode”
从Google API脚本中获得的有趣的信息:
他们这样做:
var scriptElement = document.createElement("script");
scriptElement = setAttribute("src", "https://some.com");
scriptElement = setAttribute("nonce", "https://some.com");
scriptElement.async = "true";
注意,它们如何setAttribute
用于“ src”和“ nonce”,然后.async = ...
用于“ async”属性。
我不确定100%,但这可能是因为“异步”仅在支持直接.attr =
分配的浏览器中受支持。因此,没有任何尝试的理由,sestAttribute("async")
因为如果浏览器不理解.async=...
,它将无法理解“异步”属性。
希望这对我正在进行的“ Un-minify GAPI”研究项目有帮助。如我错了请纠正我。
.setAttribute()
到时[key] = value
,一切开始神奇地工作。