HTML 在HTML5中自动设置Form的焦点

<!DOCTYPE html>  
<html>  
<head>  
    <title>Autofocusing a form input text control in HTML5</title>  
</head>  
<body>  
   
    <form>  
        <label for="usernom">Username:</label>  
        <input id="usernom" type="text" autofocus /><br/>  
   
        <label for="passwrd">Password:</label>  
        <input id="passwrd" type="password" /><br/>  
   
        <input type="reset" value="Reset" />  
        <input type="submit" value="Log in" />  
    </form>  
   
</body>  
</html>  

  

posted @ 2018-10-11 14:49  都是城市惹的祸  阅读(393)  评论(0)    收藏  举报