如何使用jquery选择ID文本框数组
我有代码HTML
我想用jquery选择id =’info [text1]’,但我不能,所以你可以帮助我!
你必须用\\
转义括号
$("#info\\[text1\\]")
见http://api.jquery.com/category/selectors/ (第二段)
试试这种方式吧。
$('input[id="info[text1]"]')
我有代码HTML
我想用jquery选择id =’info [text1]’,但我不能,所以你可以帮助我!
你必须用\\
转义括号
$("#info\\[text1\\]")
见http://api.jquery.com/category/selectors/ (第二段)
试试这种方式吧。
$('input[id="info[text1]"]')