How can I highlight a selected list item with jquery?

前端 未结 4 1587
长情又很酷
长情又很酷 2020-12-11 04:23

I have several items in a list and want to highlight the one a user clicks on by applying some css style, maybe a background color etc.

My HTML looks like this:

4条回答
  •  慢半拍i
    慢半拍i (楼主)
    2020-12-11 04:50

    $('.thumbnail').click(function(e) {
        e.preventDefault();
        $(this).css('background-color', 'red');
    })
    

提交回复
热议问题