JavaScript 로그 인 인증 기본 튜 토리 얼
1.
1.에 넣 기
2.에 넣 기
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title> , !</title>
<script type="text/javascript" src="../static/jsp/lx.js"></script>
<script type="text/javascript">alert(' javascript ')</script>
</head>
<body>
<p id="demo">www</p>
<script>
document.getElementById('demo').innerHTML = Date()
</script>
<div id="container" style="width: 400px" align="center">
<div id="header" style="background-color: aquamarine">
<h2 align="center"> </h2>
</div>
<div id="content">
<form>
<p align="center"> :
<input id="uname" type="tex" name="user" placeholder=" ">
</p>
<p align="center"> :
<input id="upass" type="password" name="psw">
</p>
<div id="error_box"><br></div>
<br>
<button onclick="fnLogin()"> </button>
   
<input type="button" name="regist" value=" ">
</form>
</div>
<div style="background-color: aquamarine">
<i> @</i>
</div>
</div>
</body>
</html>
3.외부 JS 파일 에 넣 기document.getElementById('demo').innerHTML = Date()
캡 처 실행:
세 가지 출력 데이터 방식:
1.document.write()방법 으로 내용 을 HTML 문서 에 쓴다.
2.window.alert()를 사용 하여 경고 상 자 를 팝 업 합 니 다.
3.innerHTML 을 사용 하여 HTML 요소 에 기록 합 니 다.
1)."id"속성 을 사용 하여 HTML 요 소 를 표시 합 니 다.
2).document.getElement ById(id)방법 으로 HTML 요 소 를 방문 합 니 다.
3).innerHTML 로 요소 내용 을 가 져 오 거나 삽입 합 니 다.
코드 는 다음 과 같다.
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title> , !</title>
<script type="text/javascript" src="../static/jsp/lx.js"></script>
<script type="text/javascript">alert(' javascript ')</script>
</head>
<body>
<p id="demo">www</p>
<script>
document.getElementById('demo').innerHTML = Date()
</script>
<button type="button" onclick=window.alert("number")>press</button>
</body>
</html>
캡 처 실행:3.로그 인 페이지 준비:
1.오류 알림 상자 추가.
2.HTML+CSS 파일 을 작성 합 니 다.
3.모든 입력 요소 의 id 설정
4.자 바스 크 립 트 함 수 를 정의 합 니 다.
1.사용자 이름 검증 6-20 비트
2.비밀번호 6-20 자리 검증
5.onclick 에서 이 함 수 를 호출 합 니 다.
html 코드 는 다음 과 같 습 니 다:
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title> , !</title>
<script type="text/javascript" src="../static/jsp/lx.js"></script>
<link rel="stylesheet" type="text/css" href="../static/css/lx.css" rel="external nofollow" >
</head>
<body>
<div class="div" id="container">
<div id="header" >
<h2 class="h"> </h2>
</div>
<div id="content">
<p class="p"> :
<input id="uname" type="text" placeholder=" ">
</p>
<p class="p"> :
<input id="upass" type="password" >
</p>
<div id="error_box"><br>
</div>
<button onclick="fnLogin()"> </button>
   
<input type="button" name="regist" value=" ">
</div>
<div>
<i> @</i>
</div>
</div>
</body>
</html>
js 파일 코드 는 다음 과 같 습 니 다:
function fnLogin() {
var oUname = document.getElementById("uname")
var oUpass = document.getElementById("upass")
var oError = document.getElementById("error_box")
if (oUname.value.length > 20 || oUname.value.length < 6) {
oError.innerHTML = " 6-20 "
}
if (oUpass.value.length > 20 || oUpass.value.length < 6) {
oError.innerHTML = " 6-20 "
}
}
CSS 코드 는 다음 과 같 습 니 다.
.div {
border: 5px solid #cccccc;
width: 400px;
text-align: center;
}
.p{
font-family: ;
}
.h{
font-family: ;
}
캡 처 실행:이상 이 바로 본 고의 모든 내용 입 니 다.여러분 의 학습 에 도움 이 되 고 저 희 를 많이 응원 해 주 셨 으 면 좋 겠 습 니 다.
이 내용에 흥미가 있습니까?
현재 기사가 여러분의 문제를 해결하지 못하는 경우 AI 엔진은 머신러닝 분석(스마트 모델이 방금 만들어져 부정확한 경우가 있을 수 있음)을 통해 가장 유사한 기사를 추천합니다:
[2022.04.19] 자바스크립트 this - 생성자 함수와 이벤트리스너에서의 this18일에 this에 대해 공부하면서 적었던 일반적인 함수나 객체에서의 this가 아닌 오늘은 이벤트리스너와 생성자 함수 안에서의 this를 살펴보기로 했다. new 키워드를 붙여 함수를 생성자로 사용할 때 this는...
텍스트를 자유롭게 공유하거나 복사할 수 있습니다.하지만 이 문서의 URL은 참조 URL로 남겨 두십시오.
CC BY-SA 2.5, CC BY-SA 3.0 및 CC BY-SA 4.0에 따라 라이센스가 부여됩니다.