多个班级事件在一起,如何获取当前班级名称

发布于 2024-10-01 00:52:37 字数 181 浏览 1 评论 0原文

我有多个类事件绑定在一起用于单击事件,

我想知道单击了哪个类,如何获取当前用户选择的类

$('.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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(3

走过海棠暮 2024-10-08 00:52:37

像这样使用 .className

$('.class2 , .class3, .class3').bind('click', function() { 
  alert(this.className);
  location.href = "test.htm"; 
});

您可以 不过,可以是这些类中的 1 到 3 个,包括其他不相关的类。

或者,因为如果您想使用 .hasClass() 测试它,您实际上只有 2 个 这也是一个选项:

$('.class2 , .class3').bind('click', function() { 
  var c = $(this).hasClass("class2") ? "class2" : "class3";
  alert(c);
  location.href = "test.htm"; 
});

You can use .className like this:

$('.class2 , .class3, .class3').bind('click', function() { 
  alert(this.className);
  location.href = "test.htm"; 
});

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:

$('.class2 , .class3').bind('click', function() { 
  var c = $(this).hasClass("class2") ? "class2" : "class3";
  alert(c);
  location.href = "test.htm"; 
});
不甘平庸 2024-10-08 00:52:37

您可以使用 .hasClass()

$('.class1 , .class2 , .class3').bind('click', function() { 
  if($(this).hasClass('class1')) {
    location.href = "test1.htm"; 
  } else if($(this).hasClass('class2')) {
    location.href = "test2.htm"; 
  } else if($(this).hasClass('class3')) {
    location.href = "test3.htm"; 
  }
});

You can use .hasClass()

$('.class1 , .class2 , .class3').bind('click', function() { 
  if($(this).hasClass('class1')) {
    location.href = "test1.htm"; 
  } else if($(this).hasClass('class2')) {
    location.href = "test2.htm"; 
  } else if($(this).hasClass('class3')) {
    location.href = "test3.htm"; 
  }
});
九厘米的零° 2024-10-08 00:52:37

您可以使用 hasClass 方法:

if($(this).hasClass('class2'))

虽然我不确定您会查看多少个类,或者您到底需要它做什么,所以它可能不是最好的路线:)

You could use the hasClass method ala:

if($(this).hasClass('class2'))

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 :)

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文