반응형
jquery 를 사용할때 id 값이 배열 형태일때 selector id 값을 그대로 사용하면 지정이 안된다
<input id="info[text1]" type="text" value="1"/> <br>
<input id="info[text2]" type="text" value="2"/> <br>
그럴때 역슬래쉬를 두번 감싸서 사용하거나
You have to escape the brackets with \\
$("#info\\[text1\\]")
정규식을 사용한 다음과 같은 방법을 이용하면 된다.
Try it this way.
$('input[id="info[text1]"]')
출처 : http://stackoverflow.com/questions/12973281/how-to-selector-id-textbox-array-using-jquery
반응형
'Story > Jquery' 카테고리의 다른 글
Top 10 JQuery Tooltip Plugins! (0) | 2014.04.02 |
---|---|
jQuery Plugin For Auto Resizing iFrame - iFrame Resizer 아이프레임 리사이즈 (0) | 2014.03.05 |
jquery chart (0) | 2014.01.17 |
jQuery Marquee (0) | 2013.08.05 |
이미지맵 image map 확인 (0) | 2013.08.05 |