我有HTML代码
<input id="info[text1]" type="text" value="1"/> <br>
<input id="info[text2]" type="text" value="2"/> <br>
我想选择一个id =“信息[文本1]”使用jQuery,但我不能,所以你能帮帮我!
我有HTML代码
<input id="info[text1]" type="text" value="1"/> <br>
<input id="info[text2]" type="text" value="2"/> <br>
我想选择一个id =“信息[文本1]”使用jQuery,但我不能,所以你能帮帮我!
你必须逃脱与支架\\
$("#info\\[text1\\]")
见http://api.jquery.com/category/selectors/ (第二段)
尝试这种方式。
$('input[id="info[text1]"]')
尝试这个:
$('#info\\[text1\\]');
http://jsfiddle.net/UwrVn/