使用 Bootstrap 设置禁用链接
对于每个 .nav 类,添加 .disabled 类将创建一个灰色链接,同时禁用 :hover 状态。
你可以尝试运行以下代码,设置禁用链接 -
示例
<!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 style = "background: #FADBD8;"> <h2>Website</h2> <ul class = "nav nav-tabs nav-justified"> <li class = "active"><a href = "#">Home</a></li> <li><a href = "#">Team</a></li> <li><a href = "#">Authors</a></li> <li><a href = "#">MVPs</a></li> </ul> <h2>Website (With disabled links)</h2> <ul class = "nav nav-tabs nav-justified"> <li class = "active"><a href = "#">Home</a></li> <li><a href = "#">Team</a></li> <li class = "disabled"><a href = "#">Authors (disabled link)</a></li> <li><a href = "#">MVPs</a></li> </ul> </body> </html>
广告
数据结构
网络
RDBMS
操作系统
Java
iOS
HTML
CSS
Android
Python
C 编程
C++
C#
MongoDB
MySQL
Javascript
PHP