Home > Article > Web Front-end > How to set focus to HTML elements
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('id').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!