大多数表单javascript使用ID而不是NAME的原因

前端之家收集整理的这篇文章主要介绍了大多数表单javascript使用ID而不是NAME的原因前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。

参见英文答案 > javascript name vs ID                                    5个
有人可以进入历史/原因,为什么使用NAME与表单元素进行交互已经失去了实践,而document.getElementById已经接管了.

历史上究竟发生了什么促使这种变化和转变.

最后,是否有转变或者仍然是推荐的做事方式?

Document.getElementById vs  document.form.name

根据一些论坛讨论,所有浏览器都无法识别document.form.name.是这样的吗?看到:

"I've been told in the past that you should not use "document.form_name.element_name" compared to "document.getElementById()",as the first is not recognized by all browsers. "

>来自:http://forums.devshed.com/javascript-development-115/document-getelementbyid-vs-document-form-name-element-432059.html

最佳答案
NAME属性不一定是唯一的.例如,单选按钮按名称分组.调用getElementByName将返回集合中的所有按钮. ID应该是唯一的.所以,要回答你的问题,每个人都有自己的位置.
原文链接:https://www.f2er.com/html/425947.html

猜你在找的HTML相关文章