Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
将引导菜单从单击下拉而不是悬停更改的最简单方法是什么?
示例网址:http ://riverc.mgns.se
这可以通过引导程序实现,纯粹通过 CSS 或一点 JavaScript 来实现吗?
在您的 javascript 代码中添加这一行:
$('.dropdown-toggle').dropdownHover();
在 twitter bootstrap 下拉菜单中,下拉菜单由 css 控制,因此单击过程 cnt 可以使用 css 完成,因此您必须为此使用 javascript 或 jquery ...
想法是使用两个类进行切换,
.off { display:none; } .on { display:block; }
借助http://api.jquery.com/toggleClass/开发您的脚本