close
<!DOCTYPE html>
<html lang="en">
<head>
	<meta charset="UTF-8">
	<title>Document</title>
</head>
<body>
	<label for="username">方法一:按我直接去focus那個input</label>
	<br><br><br>
	<input type="text" id="username">
	<br><br><br>
	<p id="p">方法二:按我直接去focus那個input</p>
	<br><br><br>
	<input type="password" id="password">

	<script type="text/javascript">
		document.getElementById('p').onclick=function(){
			document.getElementById('password').focus();
		}
	</script>

</body>
</html>

arrow
arrow
    全站熱搜
    創作者介紹
    創作者 Jerry 的頭像
    Jerry

    Bug倉庫 // 程式日記

    Jerry 發表在 痞客邦 留言(0) 人氣()