HTML元素设置焦点,大都是采用js的focus方法来进行设置,下面有个示例,大家可以参考下
<body <form action="" method="post" name="form1" > <input type="text" id="id" /> </form> </body> <script> function myfocus() { document.getElementById('id').focus(); } </script>
更多HTML元素设置焦点的方法相关文章请关注PHP中文网!