本文介绍了创建动态文本框在IE中不起作用的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!
问题描述
创建动态文本框无法在IE中运行
Creating dynamic textbox not working in IE
// Create a new text input
var newText = document.createElement('input');
newText.type = "input";
推荐答案
// Create a new text input
var newText = document.createElement('input');
newText.type = "text";
newText.name = "textbox1";
document.forms[0].appendChild(newText);
--Amit
--Amit
<script>
function myFunction()
{
var btn=document.createElement("input");
var t=document.createTextNode("CLICK ME");
btn.appendChild(t);
document.body.appendChild(btn);
};
</script>
<body>
<p id="demo">Click the button to make a BUTTON element with text.</p>
<button önclick="myFunction()">Try it</button>
</body>
这篇关于创建动态文本框在IE中不起作用的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!