我有一些输入字段,名称相同,但我只想像这样获取每个输入的索引值
<input type="text" name="op_price[20]" value="20.00" size="3" >
<input type="text" name="op_price[2]" value="13" size="3">
<input type="text" name="op_price[14]" value="12" size="3">
所以,例如我只想从 op_price 名称属性中获取 20、2、14,是他们的任何 JS 或 jquery 方法来做到这一点