我正在使用 Internet Explorer 执行 JS 应用程序。此应用程序的一部分是复制/克隆输入字段(包括自动完成功能)。
为此,我只需克隆输入现有字段:
field=$("#Searach_Field").clone().prependTo('#New_form'); //clone Element
field.attr('id','New_Search_Field'); //assign new ID to the input field.
此代码在 Firefox 上运行良好:输入字段被克隆,自动完成也适用于新输入字段。
但是在 IE 8 中:没有输入字段!看起来 clone() 或 prependTo 没有执行。
谢谢你。