DIV CSS 佈局教程網

 DIV+CSS佈局教程網 >> 網頁腳本 >> JavaScript入門知識 >> 關於JavaScript >> IE6不能修改NAME問題的解決方法
IE6不能修改NAME問題的解決方法
編輯:關於JavaScript     
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();
XML學習教程| jQuery入門知識| AJAX入門| Dreamweaver教程| Fireworks入門知識| SEO技巧| SEO優化集錦|
Copyright © DIV+CSS佈局教程網 All Rights Reserved