jQuery - 选择两个类之一
我有一个表行元素:
... <tr index="1000" class="class1 classHighlightRed"> ...
... <tr index="1000" class="class1 classHighlightYellow"> ...
我想根据一些常量检查第二类的值。
例如,
If (2nd class == "classHighlightRed") Then
{
doSomeWork;
}
目前我正在通过以下黑客实现这一目标:
var 2ndClass = $(this).attr("class").substring(7);
是否有更好的方法来实现这一目标?
I have a table row elements:
... <tr index="1000" class="class1 classHighlightRed"> ...
... <tr index="1000" class="class1 classHighlightYellow"> ...
I would like to check the value of the second class against some constants.
E.g.
If (2nd class == "classHighlightRed") Then
{
doSomeWork;
}
At the moment I'm achieving this through the following hack:
var 2ndClass = $(this).attr("class").substring(7);
Is there a nicer way to achieve this?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
我相信你可以使用 hasClass 方法来实现这一点?
更多信息此处
HTH
I believe you can use the hasClass method for this?
More info here
HTH