多个班级事件在一起,如何获取当前班级名称
我有多个类事件绑定在一起用于单击事件,
我想知道单击了哪个类,如何获取当前用户选择的类
$('.class2 , .class3 , .class3').bind('click', function () {
location.href = "test.htm";
});
I have multiple class events bind together for a click event ,
i want to know which class is clicked , how can i get current user selected class
$('.class2 , .class3 , .class3').bind('click', function () {
location.href = "test.htm";
});
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(3)
像这样使用
.className
:您可以 不过,可以是这些类中的 1 到 3 个,包括其他不相关的类。
或者,因为如果您想使用
.hasClass()
测试它,您实际上只有 2 个 这也是一个选项:You can use
.className
like this:It can be anywhere from 1 to 3 of those classes though, including other unrelated classes.
Or, since you only actually have 2 if you want to test it using
.hasClass()
that's an option as well:您可以使用 .hasClass()
You can use .hasClass()
您可以使用 hasClass 方法:
虽然我不确定您会查看多少个类,或者您到底需要它做什么,所以它可能不是最好的路线:)
You could use the hasClass method ala:
Though I'm not sure how many classes you'd look through or what exactly you need it for so it might not be the best route :)