HTML元素设置焦点的方法
网站建设 2021-07-02 22:42www.dzhlxh.cn网站建设
复制代码
代码如下:<body
<form action="" method="post" name="form1" >
<input type="text" id="id" />
</form>
</body>
<script> function myfocus() { document.getElementById('id').focus(); } </script>