帮我用“或” jquery选择器?
我有这样的代码:
$("#leftbutton").click(function(e){
/// do xyz
});
$("#rightbutton").click(function(e){
/// do xyz (same thing)
});
如何将它们组合起来,以便如果您单击#leftbutton或#rightbutton,它会执行xyz?
像这样的东西:
$("#leftbutton OR #rightbutton").click(function(e){
/// do xyz
});
I have this code:
$("#leftbutton").click(function(e){
/// do xyz
});
$("#rightbutton").click(function(e){
/// do xyz (same thing)
});
How do I combine them so that if you click #leftbutton or #rightbutton it does xyz?
Something like this:
$("#leftbutton OR #rightbutton").click(function(e){
/// do xyz
});
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(3)
使用逗号,在 jQuery 文档中也称为 多重选择器:
Use the comma, also known in the jQuery docs as the multiple selector:
就像 CSS 选择器一样,您可以使用逗号
Just like CSS selectors, you could use the comma
只要这样做:
Just do: