发布网友 发布时间:2022-04-26 21:30
共3个回答
热心网友 时间:2022-04-24 14:58
您好!很高兴为您答疑!
IE有3种方式都可以创建一个元素:
1 document.createElement("<input type=text>")
2 document.createElement("<input>")
3 document.createElement("input")
Firefox只支持一种方式:
document.createElement("input");document.setAttribute(name,value);
您可以在火狐社区了解更多内容。希望我的回答对您有所帮助,如有疑问,欢迎继续在本平台咨询。
热心网友 时间:2022-04-24 16:16
您好!很高兴为您答疑!
火狐下是document.createElement("input");document.setAttribute(name,value);不能像ie那样写完整的字符串,而是先创建一个对象,再设置属性。
您可以在火狐社区了解更多内容。希望我的回答对您有所帮助,如有疑问,欢迎继续在本平台咨询。
热心网友 时间:2022-04-24 17:51
火狐下是document.createElement("input");document.setAttribute(name,value);不能像ie那样写完整的字符串,而是先创建一个对象,再设置属性