0
我正在使用http://bootstraptour.com/來查看應用程序中的功能。Bootstrap Tour無法在下拉菜單上工作
我正在嘗試使用本機引導程序下拉列表工作。下拉內容是隱藏的,當遊覽到達那一步時,我在下拉菜單中添加CSS類「打開」,這是點擊它時發生的情況。 (標準引導行爲),但它不打開。
我嘗試了一切嘗試通過首先顯示它來隱藏元素的遊覽附加,但似乎沒有任何工作。我創建了一個小提琴,所以你可以看到我想要解釋的。
// Instance the tour
var tour = new Tour({
debug: true,
storage: false,
steps: [{
element: "#step1",
title: "Settings",
content: "Content of settings",
placement: "bottom",
}, {
element: "#step2",
title: "Title of my step",
content: "Content of my step",
placement: "bottom",
}, {
element: "#step3",
title: "Title of my step",
content: "Content of my step",
placement: "bottom",
onHidden: function() {
$(".dropdown").addClass("open");
},
}, {
element: "#step4",
title: "Title of my step",
content: "Content of my step",
placement: "bottom",
onShow: function() {
$("#dropdown").addClass("open");
},
}]
});
if (tour.ended()) {
tour.restart();
} else {
tour.init();
tour.start();
}
http://jsfiddle.net/rdoddXL/ku0fx7gq/2/
任何幫助,將不勝感激
感謝
感謝這幫了很多。 – Rob