10

我有代码 HTML

<input id="info[text1]" type="text" value="1"/> <br>
<input id="info[text2]" type="text" value="2"/> <br>

我想使用 jquery 选择 id='info[text1]' 但我不能,所以你能帮帮我吗!

4

3 回答 3

19

你必须逃避括号\\

$("#info\\[text1\\]")

http://api.jquery.com/category/selectors/(第二段)

于 2012-10-19T11:31:09.220 回答
5

试试这个方法。

$('input[id="info[text1]"]')
于 2012-10-19T11:30:00.140 回答
5

试试这个:

$('#info\\[text1\\]');

http://jsfiddle.net/UwrVn/

于 2012-10-19T11:30:12.940 回答