컴퓨터이야기/JQuery 폼안에 모든 input 갯수 찾기 by 변화지시자 2011. 3. 29. 반응형 <!DOCTYPE html> <html> <head> <meta charset="utf-8" /> <style> textarea { height:25px; } </style> <script src="http://code.jquery.com/jquery-1.5.js"></script> </head> <body> <form> <input type="button" value="Input Button"/> <input type="checkbox" /> <table border=1> <tr><td> <input type="file" /> <input type="hidden" /> <input type="image" /> </td></tr> </table> <div> <input type="password" /> <input type="radio" /> <input type="reset" /> </div> <input type="submit" /> <input type="text" /> //--> <select><option>Option</option></select> <!--<textarea></textarea>--> <button>Button</button> <input type="submit" name="submit" value="전송"> </form> <div id="messages"> </div> <script> var allInputs = $(":input"); var formChildren = $("form > *"); $("#messages").text("Found " + allInputs.length + " inputs and the form has " + formChildren.length + " children."); // so it won't submit $("form").submit(function () { return false; }); </script> </body> </html> :input 으로 찾으면 input 속성과 select , textarea 모두 찾아 오지만 form > * 폼의 하위 속성으로 찾아 올시 폼태크 밑에 테이블이나, 다른 태그로 감싸면 영향을 받습니다. 폼내의인풋박스갯수.html 출처 : www.jquery.com 소스 입니다. 공유하기 게시글 관리 Change Agent(변화변혁 주도자) 저작자표시 관련글 아이템 추가제거 셀렉트, 체크박스, 라디오 박스의 체크, 체인지 속성이용 셀렉트박스의 값이 인풋박스에 들어가게 하기 Jquery validation plugin