在javascript中,input.value=val与input.setAttribute('value',val)的区别?

发布于 2024-11-25 12:16:15 字数 392 浏览 1 评论 0原文

在 javascript 中,通过赋值设置 HTMLElement 属性与使用 setAttribute() 之间的区别是什么。以下内容来自 chrome 会话,让我相信存在差异:

> i = document.createElement('input');
<input>
> i.value = 'abc';
"abc"
> i
<input>​
> i.setAttribute('value','abc');
undefined
> i
<input value=​"abc">

到底有什么差异?这是那种让你恼火的东西吗?


就回答吧。

chrome 显示属性,所以这导致了我的困惑。

In javascript, is what is the difference between setting an HTMLElement property with assignment as versus using setAttribute(). The following is from a chrome session, leading me to believe there is a difference:

> i = document.createElement('input');
<input>
> i.value = 'abc';
"abc"
> i
<input>​
> i.setAttribute('value','abc');
undefined
> i
<input value=​"abc">

What exactly is the difference? Is it the type of thing that bytes you in the ass?


answer right on.

chrome displays attributes, so this led to my confusion.

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

屋顶上的小猫咪 2024-12-02 12:16:15

在 javascript 中,通过赋值设置 HTMLElement 属性与使用 setAttribute() 之间的区别是什么

这取决于属性。

value 属性反映当前值,value 属性反映默认值。

有些属性直接映射到属性。

In javascript, is what is the difference between setting an HTMLElement property with assignment as versus using setAttribute()

It depends on the property.

The value property reflects the current value, the value attribute reflects the default value.

Some properties map directly onto attributes.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文