jquery 포 지 셔 닝 input 요소 의 몇 가지 방법 소결

 
<html>
<table class=”ed”>
<tr>
<td><input type="text"></input></td>
<td><input type="text"></input></td>
<td><input type="button"></input></td>
<td><input type="text"></input></td>
</tr>
</table>
</html>
세 번 째 텍스트 상 자 를 찾 아야 할 때:
 
$(“.ed input:text)”).eq(3)
$(“.ed input:text:eq(3)”)
$(“.ed input[type=”text”]”).eq(3)
$(“.ed input[type=”text”]:eq(3)”)
그 중 에 ed 는 class="ed"입 니 다.

좋은 웹페이지 즐겨찾기