Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
如何在 jQuery 中级联多个过滤器?以下示例不起作用:
$(":input[type='submit' name='next']");
$("input[type='submit' and name='next']");
这应该工作
使用 Multiple attribute选择器
Multiple attribute
$("input[type='submit'][name='next']")