10.24 2
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了10.24 2相关的知识,希望对你有一定的参考价值。
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>Title</title>
<script>
function fnLogin() {
var oUname = document.getElementById("uname")
var oUname = document.getElementById("upass")
if(oUname.value.length<6){
oError.innerHTML="至少需要六位"
}
}
</script>
</head>
<body>
<div class="box">
<h2>登陆</h2>
<div class="input_box">
<input id="uname" type="text" placeholder="请输入用户名">
</div>
<div class="input_box">
<input id="upass" type="password" placeholder="请输入密码">
</div>
<div id="error_box"><br></div>
<div class="input_box">
<button onclick="fnLogin()">登录</button>
</div>
</div>
</body>
</html>
以上是关于10.24 2的主要内容,如果未能解决你的问题,请参考以下文章