开发者

remove class jquery

开发者 https://www.devze.com 2023-01-31 06:24 出处:网络
I am having two div tags . i like to add class on click event for current div. But after that, when i click second div , both the div has the开发者_如何学Python class.

I am having two div tags . i like to add class on click event for current div . But after that, when i click second div , both the div has the开发者_如何学Python class. how to remove class for previous div?

<div title="a1"></div>

<div title="a1"></div>

$('[title:a1]').click(function() {

   $(this).addClass('current');

}); 

where should i wright remove class ?


You need = in your attribute-equals selector:

$('[title=a1]').click(function() {
   $(this).addClass('current');
}); 

Note, you should use something like div[title=a1] instead here...anything to narrow that expensive selector down.


To remove the current class from the previously selected one, just do this:

$('[title=a1]').click(function() {
   $('.current[title=a1]').removeClass('current');
   $(this).addClass('current');
}); 


You probably need to remove the class from ALL elements first.

  $('div[title=a1]').click(function() {
       $('div[title=a1]').removeClass('current'); //remove current fom all divs
       $(this).addClass('current'); //ad it to current div only
   }); 
0

精彩评论

暂无评论...
验证码 换一张
取 消