1. 程式人生 > >html5自動獲取焦點

html5自動獲取焦點

<html>
<head>
<title>自動獲得焦點</title>
<meta name="author" content="Yeeku.H.Lee(CrazyIt.org)" />
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8" />
</head>
<body>
姓名:<input type="textarea" name="xinming"/><br/>
年齡:<input type="textarea" autofocus name="age"/>
</html>
<!-- HTML5自動獲取焦點, autofocus-->

<!-- HTML獲取焦點,比較 -->

<html>
<head>
<title>不是自動獲取焦點</title>
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8" />
</head>
<body>
姓名:<input type="text" name="xinming" id="xinming"/><br/>
年齡:<input type="text" name="age" id="age"/>
</body>
</html>
<script type="text/javascript">
document.getElementById("xinming").focus();
</script>

<!-- 普通用js獲取-->