<input type="text" name="nameA">
<input type="text" name="nameB">
<input type="radio" name="nameC" value="1">
<input type="radio" name="nameC" value="2">
<input type="radio" name="nameD" value="3">
<input type="radio" name="nameD" value="4">
<input type="checkbox" name="nameE" value="1">
<input type="checkbox" name="nameE" value="2">
<input type="checkbox" name="nameF" value="3">
<input type="checkbox" name="nameF" value="4">
상기 코드가 있을 때, radio 타입이면서 nameC 인 input 을 선택하려면..?
뭐, 당연히.. $('input[type="radio"][name="nameC"]') 라고 하면 되는데.. 이건 and 조건
그러면.. radio 인 넘들과 checkbox 인 넘들을 다 선택하려면..?
$('input[type="radio"], input[type="checkbox"]').. 라고 하면 되고, 이건 or 조건
자, 이제 radio 이고 nameC 인 넘들과 checkbox 이고 nameF 인 넘들만 선택하려면..?
$('input[type="radio"][name="nameC"], input[type="checkbox"][name="nameF"]').. 라고 하면 되고, 이건 or 조건
and 조건을 [attributeName="attributeValue1" && attributeName="attributeValue2"] 라고 했으면 얼마나 좋을까..
그런데, [attributeName="attributeValue1"][attributeName="attributeValue1"] 이것이 좀더 코드를 줄일 수 있으니까 좋긴 한데..
or 조건은..? [attributeName="attributeValue1" || attributeName="attributeValue1"] 라고 했으면 얼마나 좋을까요.. ㅠ.
이미 or 조건은 ',' 로 분리한다는 것이 있었기 때문에..
tagName[attributeName="attributeValue1"], tagName[attributeName="attributeValue2"] 로 하는 것. 이건 코드가 좀더 기네.. ㅠ.
'Local Oriented > jQuery' 카테고리의 다른 글
on 을 했으면 off 를 해야.. (0) | 2015.07.13 |
---|---|
each() 를 사용한 루프에서 continue 와 break 기법 (0) | 2015.03.26 |
jquery 플러그인 (0) | 2014.12.15 |
백스페이스(BS) 눌렀을 때 메시지 뿌리고 화면 제어 (뒤로가기) (0) | 2014.12.09 |
다른 도메인의 iframe 밖에서 iframe 사이즈 (특히 height 값) 조정하기 (0) | 2014.10.29 |