How do I make the whole area of a list item in my navigation bar, clickable as a link?

前端 未结 10 1969
栀梦
栀梦 2020-11-27 13:50

I\'ve got a horizontal navigation bar made from an unordered list, and each list item has a lot of padding to make it look nice, but the only area that works as a link is th

10条回答
  •  轻奢々
    轻奢々 (楼主)
    2020-11-27 14:33

    Or you could use jQuery:

    $("li").click(function(){
       window.location=$(this).find("a").attr("href"); 
       return false;
    });
    

提交回复
热议问题