Javascript 中文本输入的 value 和 defaultValue 之间的区别?

发布于 2024-09-26 10:53:44 字数 104 浏览 1 评论 0原文

Javascript 中文本输入的 value 和 defaultValue 有什么区别?使用其中一种而不是另一种会有什么影响?

它们可以自由互换吗?即,改变一个会改变另一个吗?

What is the difference between value and defaultValue for text inputs in Javascript? And what are the implications of using one instead of the other?

Are they free interchangeable? i.e., does changing one change the other?

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

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

发布评论

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

评论(2

破晓 2024-10-03 10:53:44

defaultValue 是对象的初始值,而 value 是对象发生更改后的当前值。如果未进行任何更改,value 等于defaultValue

嗯……正在寻找参考,等等。

defaultValue is the initial value of the object while value is the current value of the object after a change has been made. If no changes has been made, value is equal to defaultValue.

uhmm... looking for reference, wait.

冷默言语 2024-10-03 10:53:44

在示例中,

<INPUT TYPE="password" NAME="password" VALUE="admin" SIZE=25>

只要“defaultValue”将输出“admin”
如果字段发生更改,“值”获取器将输出字段中的当前值。

“defaultValue”适用于: http://www.java2s.com/代码/JavaScriptReference/Javascript-Properties/defaultValueisappliedto.htm

In the example

<INPUT TYPE="password" NAME="password" VALUE="admin" SIZE=25>

whenever "defaultValue" will output "admin"
if the field is changed the "value" getter will output the current value in the field.

"defaultValue" applies to: http://www.java2s.com/Code/JavaScriptReference/Javascript-Properties/defaultValueisappliedto.htm

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