评论

收藏

[Html/CSS] HTML元素设置焦点的方法

开发技术 开发技术 发布于:2021-09-15 12:22 | 阅读数:428 | 评论:0

代码如下:
<body  
    <form action="" method="post" name="form1" >  
    
      <input type="text" id="id" />  
    
    </form>  
    
  </body>  
    
  <script> function myfocus() { document.getElementById('id').focus(); } </script>
关注下面的标签,发现更多相似文章