开发者

HTML Menu : Set Selected item Icon Highlited

开发者 https://www.devze.com 2023-03-11 19:24 出处:网络
I have a list of images.When one is clicked, I want it to highlight that image and set the others normal.Could th开发者_JAVA技巧is be done with jQuery toggle ?Try something like this:

I have a list of images. When one is clicked, I want it to highlight that image and set the others normal. Could th开发者_JAVA技巧is be done with jQuery toggle ?


Try something like this:

$('img').click(function() {
  $(".highlight").removeClass("highlight");  //remove the highlight css class from anything that has it
  $(this).addClass("highlight"); //add the highlight css class to the image that was clicked.
});
0

精彩评论

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

关注公众号