如何在jQuery中级联几个过滤器?以下示例不起作用:
$(":input[type='submit' name='next']");发布于 2013-11-07 10:51:52
使用Multiple attribute选择器
$("input[type='submit'][name='next']")发布于 2013-11-07 10:52:44
$("input[type='submit' and name='next']");这应该能行
https://stackoverflow.com/questions/19834003
复制相似问题