<%@ page language="java" contentType="text/html; charset=UTF-8"
pageEncoding="UTF-8"%>
<!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
<title>Insert title here</title>
<script src="https://ajax.googleapis.com/ajax/libs/jquery/3.3.1/jquery.min.js"></script>
<script>
$(document).ready(function () {
$('button').click(function () {
// str은 문자열 타입
var str = $('input[type=checkbox]').attr('checked');
// val는 불리언 타입 true/false
var val = $('input[type=checkbox]').prop('checked');
alert(str + ' : ' + val);
});
});
</script>
</head>
<body>
<input type="radio" value="라디오버튼값" checked="checked">라디오버튼<br>
<input type="checkbox" value="체크박스값">체크박스<br>
<button type="button">버튼</button>
</body>
</html>
'IT > jQuery' 카테고리의 다른 글
jQuery - 이미지 사이즈 변경, 이미지 자동으로 넘김 처리 (0) | 2018.11.18 |
---|---|
jQuery - ajax통신, json, xml 사용 예제 (0) | 2018.11.18 |
jQuery - 애니메이션 show(), hide(), toggle(), innerfade, animate (0) | 2018.11.17 |
jQuery - form submit 이벤트 함수, event.preventDefault() (0) | 2018.11.17 |
jQuery - textarea keyup 이벤트 (0) | 2018.11.16 |