jquery 크기() 메서드
번역 결과:
size
English [saəz] US [saəz]
n. , 특정 크기의 코팅
adj.
jquery 크기() 메서드통사론
함수: size() 메서드는 jQuery 선택기와 일치하는 요소 수를 반환합니다.
구문: $(selector).size()
jquery 크기() 메서드예
<html> <head> <script type="text/javascript" src="http://apps.bdimg.com/libs/jquery/2.1.1/jquery.min.js"></script> <script type="text/javascript"> $(document).ready(function(){ $("button").click(function(){ alert($("li").size()); }); }); </script> </head> <body> <button>输出 li 元素的数目</button> <ul> <li>Coffee</li> <li>Milk</li> <li>Soda</li> </ul> </body> </html>
온라인 인스턴스를 보려면 "인스턴스 실행" 버튼을 클릭하세요