在javascript中,input.value=val与input.setAttribute('value',val)的区别?
在 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
这取决于属性。
value 属性反映当前值,value 属性反映默认值。
有些属性直接映射到属性。
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.