Jsp - 버튼제어2
2020. 6. 16. 11:27ㆍJsp
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
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
|
<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8">
<title>Insert title here</title>
<script type="text/javascript">
//window(창) - location(주소줄)
//- history(방문기록)
//- document(html문서) ->image,link,layer...
// - form(로그인창)->text,password,textarea
// -checkbox, radio
// -select - option
//window.documenst.폼이름.텍스트상자이름.변수 ->type, name, value
// document.fr.txt.type
// document.fr.txt.name
// document.fr.txt.value
//window.documenst.폼이름.텍스트상자이름.함수()
// document.fr.txt.focus(); 커서 깜빡임
// document.fr.txt.blur(); 포커스해제
// document.fr.txt.select(); 글자를 블럭시킴
function fun1() {
alert(document.fr.txt.type);
alert(document.fr.txt.name);
alert(document.fr.txt.value);
}
function fun2() {
document.fr.txt.focus();
document.fr.txt.blur();
document.fr.txt.select();
}
function fun3() {
//텍스트 상자가 비어있으면 "텍스트 입력하세요"
if(document.fr.txt.value==""){
alert("텍스트 입력하세요.");
document.fr.txt.focus();
}
else if(document.fr.pass.value==""){
alert("비밀번호를 입력하세요.");
document.fr.pass.focus();
}
else if(document.fr.tx.value==""){
alert("긴텍스트 입력하세요.");
document.fr.tx.focus();
}
else{
document.fr.action="a.jsp"
document.fr.submit();
document.fr.method="post";
}
}
function fun4() {
// alert("문자열".length);
// alert(document.fr.txt.value.length);
if(document.fr.txt.value.length=="0"){
alert("텍스트입력하세요");
document.fr.txt.focus();
return;
}
//텍스트 5자 입력하세요. ''!='' 아니다 표시
if(document.fr.txt.value.length!="5"){
alert("텍스트 5자 입력하세요")
document.fr.txt.focus();
return;
}
// if(document.fr.txt.value==""){
// alert("텍스트 입력하세요.");
// document.fr.txt.focus();
// return;
// }
if(document.fr.pass.value==""){
alert("비밀번호를 입력하세요.");
document.fr.pass.focus();
return;
}
//비밀번호가 4~7자 사이가 아니면 "비밀번호는 4~7자 사이입니다" 포커스돌리고
if(document.fr.pass.value.length<4){
alert("비밀번호는 4~7자 사이입니다.");
document.fr.pass.focus();
return;
}
if(document.fr.pass.value.length>7){
alert("비밀번호는 4~7자 사이입니다.");
document.fr.pass.focus();
return;
}
if(document.fr.tx.value==""){
alert("긴텍스트 입력하세요.");
document.fr.tx.focus();
return;
}
document.fr.method="post";
document.fr.action="b.jsp";
document.fr.submit();
}
</script>
</head>
<body>
<h1>js3/test3.html</h1>
<form action="a.jsp" method="get" name="fr">
텍스트 : <input type="text" name="txt" ><br>
비밀번호 : <input type="password" name="pass"><br>
긴텍스트 : <textarea name="tx" rows="10" cols="20"></textarea><br>
<input type="button" value="버튼" onclick="fun1()">
<input type="button" value="포커스" onclick="fun2()">
<input type="button" value="글자입력" onclick="fun3()">
<input type="button" value="글자입력2" onclick="fun4()">
</form>
</body>
</html>
|
cs |
포커스에 대해 배워보았는데 역시나 아직 까진 어려운 게 없었다.
'Jsp' 카테고리의 다른 글
Jsp - 회원가입창 (0) | 2020.06.16 |
---|---|
Jsp - 버튼제어3 (0) | 2020.06.16 |
Jsp - 버튼제어 (0) | 2020.06.16 |
Jsp - input ,type (0) | 2020.06.16 |
Jsp - 이미지 제어 (0) | 2020.06.16 |