在Bootstrap中使用.disabled类可禁用Bootstrap中列表组中的列表项。
您可以尝试运行以下代码以禁用列表项-
<!DOCTYPE html> <html> <head> <title>Bootstrap Example</title> <link href = "/bootstrap/css/bootstrap.min.css" rel = "stylesheet"> <script src = "/scripts/jquery.min.js"></script> <script src = "/bootstrap/js/bootstrap.min.js"></script> </head> <body> <div class = "container"> <h2>Beverages</h2> <div class = "list-group"> <a href = "#" class = "list-group-item">Gatorade</a> <a href = "#" class = "list-group-item">Coca Cola</a> <a href = "#" class = "list-group-item">Pepsi</a> <a href = "#" class =" list-group-item disabled">Sting</a> </div> </div> </body> </html>