這裏是一個Javascript jQuery的順序如何從可摺疊引導改變3 navbar
到不可摺疊navbar
:
// Grab the height of the navbar
var navbarHeight = $('.navbar-header').height();
// Remove the navbar-toggle button
$('.navbar-toggle').remove();
// Move the collapsed section into the navbar-header
$('.collapse').appendTo('.navbar-header');
// Display all the collapsed items inline (assumes all the items are list items)
$('.collapse, .collapse ul, .collapse li').css('display', 'inline-block');
// Remove collapse class
$('.collapse').removeClass('collapse');
// Remove navbar-nav class (optional)
$('.navbar-nav').removeClass('navbar-nav');
// Hard-set the height of the navbar (optional)
$('.navbar-header').height(navbarHeight);
注意上面的序列只被測試有幾種類型的導航欄元素。它可能需要您的導航欄的附加步驟。
我添加了一個問題的澄清 - 我想在導航欄上看到這些項目,而不是在它下面的下拉列表中。 –