这是我创建的最简单的例子,这在ie 11中不起作用:( 它实际上不会让我输入文本输入!
<!DOCTYPE html>
<html>
<body>
<script type='text/javascript'>
var text = document.createElement('input');
text.type = 'text';
document.documentElement.appendChild(text);
</script>
</body>
</html>
我怎样才能解决这个荒谬的错误? 我正在建立一个复杂的网站,使用JavaScript生成大部分的HTML。
答案 0 :(得分:1)
document.documentElement
将是您的html页面,并且您尝试将元素作为documentElement
的innerHTML的兄弟元素附加。
而不是documentElement
使用body
:
var text = document.createElement('input');
text.type = 'text';
document.body.appendChild(text);
答案 1 :(得分:0)
去过那里......我不得不把注意力集中在输入上。
$("input").click(function(){ $(this).closest('input').focus()})