Disable a link in Bootstrap

前端 未结 6 1597
挽巷
挽巷 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:12

    You cant set links to "disabled" just system elements like input, textfield etc.

    But you can disable links with jQuery/JavaScript

    $('.disabled').click(function(e){
        e.preventDefault();
    });
    

    Just wrap the above code in whatever event you want to disable the links.

提交回复
热议问题