When to use setAttribute vs .attribute= in JavaScript?(何时在 JavaScript 中使用 setAttribute 与 .attribute=?)
问题描述
是否已开发出使用 setAttribute
而不是点 (.
) 属性表示法的最佳实践?
Has a best-practice around using setAttribute
instead of the dot (.
) attribute notation been developed?
例如:
myObj.setAttribute("className", "nameOfClass");
myObj.setAttribute("id", "someID");
或
myObj.className = "nameOfClass";
myObj.id = "someID";
推荐答案
如果您想在 JavaScript 中进行编程访问,您应该始终使用直接的 .attribute
形式(但请参阅下面的 quirksmode 链接).它应该正确处理不同类型的属性(想想onload").
You should always use the direct .attribute
form (but see the quirksmode link below) if you want programmatic access in JavaScript. It should handle the different types of attributes (think "onload") correctly.
当您希望按原样处理 DOM(例如,仅文本)时,请使用 getAttribute
/setAttribute
.不同的浏览器混淆了两者.请参阅怪癖模式:属性(in)兼容性.
Use getAttribute
/setAttribute
when you wish to deal with the DOM as it is (e.g. literal text only). Different browsers confuse the two. See Quirks modes: attribute (in)compatibility.
这篇关于何时在 JavaScript 中使用 setAttribute 与 .attribute=?的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持编程学习网!
本文标题为:何时在 JavaScript 中使用 setAttribute 与 .attribute=?
基础教程推荐
- 如何使用TypeScrip将固定承诺数组中的项设置为可选 2022-01-01
- 自定义 XMLHttpRequest.prototype.open 2022-01-01
- 我可以在浏览器中与Babel一起使用ES模块,而不捆绑我的代码吗? 2022-01-01
- Electron 将 Node.js 和 Chromium 上下文结合起来意味着 2022-01-01
- 直接将值设置为滑块 2022-01-01
- html表格如何通过更改悬停边框来突出显示列? 2022-01-01
- Vue 3 – <过渡>渲染不能动画的非元素根节点 2022-01-01
- 用于 Twitter 小部件宽度的 HTML/CSS 2022-01-01
- Chart.js 在线性图表上拖动点 2022-01-01
- 如何使用JIT在顺风css中使用布局变体? 2022-01-01