Textarea不允许我输入想要的文本。它停在中间,不允许我添加任何文本。如果我关闭键盘并再次开始编辑,它将需要一段时间,然后又停止。您可以参考屏幕截图。请告知是否有人遇到相同问题。
代码:
<!DOCTYPE html>
<head>
<meta charset="utf-8">
<title>Demo</title>
</head>
<body>
<div>
<p>First paragraph in the code, but should become second after the Javascript fired.</p>
</div>
<script>
document.querySelector('div').insertAdjacentHTML('afterBegin','<p>Second paragraph in the code, but should become first.</p>')
</script>
</body>
</html>
答案 0 :(得分:1)
使用setMaxSize(65536)
或类似方法将输入大小设置为大于默认值。