创建动态文本框在IE中不起作用
// Create a new text input
var newText = document.createElement('input');
newText.type = "input";
它可以在所有其他浏览器中工作
最佳答案
在setAttribute方法的帮助下尝试此操作。
另外,请设置正确的类型,如“文本”或“提交”等
var newText = document.createElement('input');
newText.setAttribute("type", "text");
关于html - 创建动态文本框在IE中不起作用,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/13471020/