文章详情

  • 游戏榜单
  • 软件榜单
关闭导航
热搜榜
热门下载
热门标签
php爱好者> php文档>关于IE6不能修改NAME的问题

关于IE6不能修改NAME的问题

时间:2010-09-02  来源:PHP爱好者

昨天在项目中发现IE6动态生成的INPUT是不能改NAME的,微软关于这个问题有这么个说法

The NAME attribute cannot be set at run time on elements dynamically created with the createElement method.
To create an element with a name attribute, include the attribute and value when using the createElement method. 

也就是说,你得这么写

document.createElement('<input type="text" name="username" >');

 

看起来都觉得不爽,而且不支持FF.

如果你使用了Jquery的clone方法,然后想在复制之后修改元素的name属性,那是不会成功的,简单一点的办法是新建一个,然后删掉原来那个。

 

$('<input type="text" name="username" />').appendTo(xxx.parent());

xxx.remove();

 

 

 


相关阅读 更多 +
排行榜 更多 +
辰域智控app

辰域智控app

系统工具 下载
网医联盟app

网医联盟app

运动健身 下载
汇丰汇选App

汇丰汇选App

金融理财 下载