input 输入框默认获得焦点
Posted Henu丶雨巷
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了input 输入框默认获得焦点相关的知识,希望对你有一定的参考价值。
javascript实现默认焦点:
如下写<body>标签:
<body onload="window.formLogin.user.focus()"> <form name="formLogin" action="" method=""> <input type="text" name="user" value=""/> <input type="password" name="password" value=""/> </form> </body>
这样写的话,刷新页面后焦点默认在user的文本框上。
如果使用jQuery
$(document).ready(function(){ $("user").focus(); })
以上是关于input 输入框默认获得焦点的主要内容,如果未能解决你的问题,请参考以下文章
iscroll4 input textarea不能获得焦点问题