Story/Jquery

jquery 배열 형태의 id 값 사용하기

Stdio 2014. 1. 28. 17:49
반응형

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

반응형