예시]

JSP 

<input type="checkBox" id="chk1" name="chk1" />
<input type="checkBox" id="chk2" name="chk2" />
<input type="checkBox" id="chk3" name="chk3" />
<input type="checkBox" id="chk4" name="chk4" />
<input type="checkBox" id="chk5" name="chk5" />

$('[name^=chk]').prop('checked', true);

 

: chk로 된 체크박스 name input태그들 전부 checked true 처리 

+ Recent posts