컴퓨터이야기/JQuery 셀렉트, 체크박스, 라디오 박스의 체크, 체인지 속성이용 by 변화지시자 2011. 3. 29. 반응형 <!DOCTYPE html> <html> <head> <style> body, select { font-size:12px; } form { margin:5px; } p { color:red; margin:5px; font-size:14px; } b { color:blue; } </style> <script src="http://code.jquery.com/jquery-1.5.js"></script> </head> <body> <form> <select name="single"> <option>Single</option> <option>Single2</option> </select> <br /> <select name="multiple" multiple="multiple"> <option selected="selected">Multiple</option> <option>Multiple2</option> <option selected="selected">Multiple3</option> </select> <br/> <input type="checkbox" name="check" value="check1" id="ch1"/> <label for="ch1">check1</label> <input type="checkbox" name="check" value="check2" checked="checked" id="ch2"/> <label for="ch2">check2</label> <br /> <input type="radio" name="radio" value="radio1" checked="checked" id="r1"/> <label for="r1">radio1</label> <input type="radio" name="radio" value="radio2" id="r2"/> <label for="r2">radio2</label> </form> <p><tt id="results"></tt></p> <script> function showValues() { var str = $("form").serialize(); $("#results").text(str); } $(":checkbox, :radio").click(showValues); $("select").change(showValues); showValues(); </script> </body> </html> 체크와셀렉트속성이용.html 출처 : www.jquery.com 소스 입니다 공유하기 게시글 관리 Change Agent(변화변혁 주도자) 저작자표시 관련글 인풋박스의 값을 셀렉트 박스로 아이템 추가제거 폼안에 모든 input 갯수 찾기 셀렉트박스의 값이 인풋박스에 들어가게 하기