javascript createElement()创建input不能设置name属性的解决方法_javascript技巧
程序员文章站
2022-04-18 13:28:04
...
其中obj.name = "select";这句话并不能起到预期的作用,无论是看生成后的HTML代码还是观察使用document.getElementsByName()获取的数组长度,都会发现这个name设置并没有起作用。当然这种情况只出现在IE6和IE7中,而在FireFox中是没有问题的。
[Ctrl+A 全选 注:如需引入外部Js需刷新才能执行]
当然解决方法很简单,在创建时,使用document.createElement("")。不过还不知道是什么原因?
在Name属性的说明中有这样一句话:
In Internet Explorer 5, the name property cannot be set at run time on anchor objects dynamically created with the createElement method. To create an anchor with a NAME attribute, include the attribute and value when using the createElement method, or use the innerHTML property.
[Ctrl+A 全选 注:如需引入外部Js需刷新才能执行]
当然解决方法很简单,在创建时,使用document.createElement("")。不过还不知道是什么原因?
在Name属性的说明中有这样一句话:
In Internet Explorer 5, the name property cannot be set at run time on anchor objects dynamically created with the createElement method. To create an anchor with a NAME attribute, include the attribute and value when using the createElement method, or use the innerHTML property.
推荐阅读
-
IE6不能修改NAME问题的解决方法_javascript技巧
-
javascript createElement()创建input不能设置name属性的解决方法_javascript技巧
-
ie8下修改input的type属性报错的解决方法_javascript技巧
-
ie8下修改input的type属性报错的解决方法_javascript技巧
-
javascript createElement()创建input不能设置name属性的解决方法_javascript技巧
-
JavaScript获取并更改input标签name属性的方法_javascript技巧
-
IE6不能修改NAME问题的解决方法_javascript技巧
-
textarea不能通过maxlength属性来限制字数的解决方法_javascript技巧
-
JavaScript获取并更改input标签name属性的方法_javascript技巧
-
IE中document.createElement的iframe无法设置属性name的解决方法_javascript技巧