我如何在javascript中执行以下操作:
<textarea onload="focus">Here is some text</textarea>
基本上,我希望关注textarea字段,我希望在html标记内完成。
答案 0 :(得分:2)
尝试自动对焦属性:
<textarea autofocus>
At w3schools.com you will learn how to make websites.
</textarea>
答案 1 :(得分:0)
您需要提供一些方法来选择您的textarea,例如ID:<textarea id="my-textarea"></textarea>
。
然后您可以使用DOM API:document.getElementById('my-textarea').focus()
。
或者使用jQuery:$('#my-textarea').focus()
。