Home  >  Article  >  Web Front-end  >  How to set focus to HTML elements

How to set focus to HTML elements

php中世界最好的语言
php中世界最好的语言Original
2018-01-27 10:08:262872browse

This time I will show you how to set focus on HTML elements, and what are the precautions for setting focus on HTML elements. The following is a practical case. Let’s take a look.

The code is as follows:

<body    
    <form action="" method="post" name="form1" >  
        <input type="text" id="id" />  
    </form>  
</body>  
<script> function myfocus() { document.getElementById(&#39;id&#39;).focus(); }
</script>

I believe you have mastered the method after reading these cases. For more exciting information, please pay attention to other related articles on the php Chinese website!

Related reading:

How to use hyperlinks to open new windows and control window properties in HTML

input input How to solve the problem of inconsistent cursor size display in the box

How to use vertical-align to align the input element and the img element

The above is the detailed content of How to set focus to HTML elements. For more information, please follow other related articles on the PHP Chinese website!

Statement:
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn