标签: jquery
如何在jQuery中级联多个过滤器?以下示例无效:
$(":input[type='submit' name='next']");
答案 0 :(得分:0)
使用Multiple attribute选择器
Multiple attribute
$("input[type='submit'][name='next']")
答案 1 :(得分:0)
$("input[type='submit' and name='next']");
这应该有效