专注于textarea

时间:2015-02-24 21:07:53

标签: javascript

我如何在javascript中执行以下操作:

<textarea onload="focus">Here is some text</textarea>

基本上,我希望关注textarea字段,我希望在html标记内完成。

2 个答案:

答案 0 :(得分:2)

尝试自动对焦属性:

 <textarea autofocus>
At w3schools.com you will learn how to make websites.
</textarea> 

w3schools

答案 1 :(得分:0)

您需要提供一些方法来选择您的textarea,例如ID:<textarea id="my-textarea"></textarea>

然后您可以使用DOM API:document.getElementById('my-textarea').focus()

或者使用jQuery:$('#my-textarea').focus()