Notice
Recent Posts
Recent Comments
Link
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 |
Tags
- Math.round()
- selectoptions
- selectedIndex
- Parent
- excel중복체크
- Excel
- FileZilla다운로드
- Math.ceil()
- hide
- 소스트리인증실패
- Git
- 증가값
- calc.plus
- is_check
- Math.floor()
- 파일질라설치
- 파일질라설치오류
- slideUp
- index %
- calc.minus
- addClass
- FileZilla설치
- SUB함수
- removeClass
- 1521
- toFixed()
- 주석이 먹히지 않을 때
- push오류
- 파일질라다운로드
- ctrl+/
Archives
- Today
- Total
잡동사니에도 사랑을
[21.10.13] exam09 본문
728x90
반응형
<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8">
<title>Insert title here</title>
<link rel="stylesheet" href="../css/event.css">
</head>
<body>
<h1>Change 이벤트 확인하기</h1>
<div id="input">
<h3>이름</h3>
<input type="text" name="user_name" />
<h3>취미</h3>
<label><input type="checkbox" name="hobby" value="축구"/> 축구</label>
<label><input type="checkbox" name="hobby" value="농구"/> 농구</label>
<label><input type="checkbox" name="hobby" value="야구"/> 야구</label>
<h3>성별</h3>
<label><input type="radio" name="gender" value="남자"/> 남자</label>
<label><input type="radio" name="gender" value="여자"/> 여자</label>
<h3>직업</h3>
<select name="job">
<option value="프로그래머">프로그래머</option>
<option value="퍼블리셔">퍼블리셔</option>
<option value="디자이너">디자이너</option>
<option value="기획">기획</option>
</select>
</div>
<h2>결과</h2>
<div id="result"></div>
<script type="text/javascript" src="http://code.jquery.com/jquery-3.6.0.min.js"></script>
<script type="text/javascript">
$(document).ready(function(){
$('#input > input[name="user_name"]').change(function(){
$('#result').text('이름의 입력값이 변경되었습니다.');
});
$('input[name=hobby]').change(function(){
$('#result').text('취미가 변경되었습니다.');
});
$('input[name=gender]').change(function(){
$('#result').text('성별이 변경되었습니다.');
});
$('select[name=job]').change(function(){
$('#result').text('직업이 변경되었습니다.');
});
});
</script>
</body>
</html>
728x90
반응형