$(function(){ $("#ul").on('click','li',function(){ if(!$(this).a

 $(function(){
        $("#ul").on('click','li',function(){
            if(!$(this).attr('s')){
                $(this).css('background','red');
                $(this).attr('s',true);
            }else{
                $(this).css('background','#fff');
                $(this).removeAttr('s');
            }
        })
    })

 

ttr('s')){ $(this).css('background','red'); $(this).attr('s',true); }else{ $(this).css('background','#fff'); $(this).removeAttr('s'); } }) })

posted on 2018-04-27 22:01  liweideblogs  阅读(172)  评论(0编辑  收藏  举报