Disable a link in Bootstrap

前端 未结 6 1586
挽巷
挽巷 2021-02-03 16:40

The first example didn\'t work. I need to have always a list to disable links? Or what is wrong with my first demo?

Disabl         


        
6条回答
  •  臣服心动
    2021-02-03 17:22

    I just removed 'href' attribute from that anchor tag which I want to disable

    $('#idOfAnchorTag').removeAttr('href');
    
    $('#idOfAnchorTag').attr('class', $('#idOfAnchorTag').attr('class')+ ' disabled');
    

提交回复
热议问题