admin管理员组文章数量:1344233
I'm trying to toggle whether tabs will be displayed based on whether or not the matched list item has a class of active. I've tried multiple different approaches with if statements and .hasClass but cannot get it to behave as I wish! Any help would be greatly appreciated.
This is an example of one of my attempts:
$( "#indexHero" ).onClick(function(){
$("#tabNo1.active"){
$( "#testID1, #testID2" ).addClass( "hideMe" );
$( "#testID3" ).removeClass( "hideMe" );
}
});
I'm trying to toggle whether tabs will be displayed based on whether or not the matched list item has a class of active. I've tried multiple different approaches with if statements and .hasClass but cannot get it to behave as I wish! Any help would be greatly appreciated.
This is an example of one of my attempts:
$( "#indexHero" ).onClick(function(){
$("#tabNo1.active"){
$( "#testID1, #testID2" ).addClass( "hideMe" );
$( "#testID3" ).removeClass( "hideMe" );
}
});
Share
edited Dec 5, 2015 at 19:39
Jay
asked Apr 17, 2015 at 11:59
JayJay
1,6785 gold badges21 silver badges35 bronze badges
2
-
1
"
$( "#indexHero" ).onClick(...
" What's that? It's not jQuery.... jQuery would be.click(...
or.on("click", ...
(or in days gone by,.bind("click", ...
). – T.J. Crowder Commented Apr 17, 2015 at 12:03 -
1
You have
.hasClass()
for that purposes, it will return a boolean. By the way, I would replace.onClick(function(){});
by.on('click', function(){});
– kosmos Commented Apr 17, 2015 at 12:04
3 Answers
Reset to default 5Check with length
property or else Use .hasClass()
in jquery
$( "#indexHero" ).click(function(){
if($("#tabNo1.active").length > 0){
$( "#testID1, #testID2" ).addClass( "hideMe" );
$( "#testID3" ).removeClass( "hideMe" );
}
});
or
if($("#tabNo1").hasClass("active")){
}
use hasClass()
$( "#indexHero" ).click(function(){
if ($('#tabNo1').hasClass('active')) {
$( "#testID1, #testID2" ).addClass( "hideMe" );
//} else {
$( "#testID3" ).removeClass( "hideMe" );
}
}):
Try this:
$( "#indexHero" ).click(function(){
if($("#tabNo1").hasClass("active"))
{
$( "#testID1, #testID2" ).addClass( "hideMe" );
$( "#testID3" ).removeClass( "hideMe" );
}
});
本文标签: javascriptjQuery if element has class do somethingStack Overflow
版权声明:本文标题:javascript - jQuery if element has class do something - Stack Overflow 内容由网友自发贡献,该文观点仅代表作者本人, 转载请联系作者并注明出处:http://www.betaflare.com/web/1743667829a2519029.html, 本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如发现本站有涉嫌抄袭侵权/违法违规的内容,一经查实,本站将立刻删除。
发表评论