-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathidcheck.html
More file actions
29 lines (29 loc) · 986 Bytes
/
idcheck.html
File metadata and controls
29 lines (29 loc) · 986 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Document</title>
</head>
<body>
<form id="lo" onsubmit="return idCheck(this)">
<input type="text" name="id" id="id" placeholder="아이디 입력" autofocus><br><br>
<input type="submit" value="아이디 중복 확인"><br><br>
</form>
<script>
document.getElementById("id").value = opener.document.getElementById("id").value;
function idCheck(frm){
if(frm.id.value==""){
alert("아이디 입력칸이 비어 있습니다.");
frm.id.focus();
return false;
} else {
alert("사용 가능한 아이디 입니다.");
opener.document.getElementById("id").value = document.getElementById("id").value;
window.close();
}
}
// 왼쪽이 세터, 오른쪽이 게터
</script>
</body>
</html>