0

如何在 jQuery 中级联多个过滤器?以下示例不起作用:

$(":input[type='submit' name='next']");
4

2 回答 2

0
$("input[type='submit' and name='next']");

这应该工作

于 2013-11-07T10:52:44.817 回答
0

使用 Multiple attribute选择器

$("input[type='submit'][name='next']")
于 2013-11-07T10:51:52.883 回答