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();