我正在使用bootstraptour.com 进行多页浏览。
我有单独的 demo.js,其中包含所有代码并包含在所有两个页面中。
当我单击进行游览按钮时,它会进行游览,当它重定向 next.php 时,它不再显示任何步骤。
当我重定向到另一个页面时,它会停止显示下一步。
它停止游览。
我该如何解决这个多页游览。
代码
$(function(){
var $demo, duration, remaining, tour;
$demo = $("#taketour");
storage:false,
duration = 5000;
remaining = duration;
tour = new Tour({
// //storage : false,
// onStart: function() {
// ///return $demo.addClass("disabled", true);
// },
// onEnd: function() {
// return $demo.removeClass("disabled", true);
// },
debug:true,
name: "tour"
}).init();
tour.addSteps([
{
//path:"home.php",
element: "#a",
placement: "right",
title: "step1 ",
content: "1"
},
{
element: "#b",
placement: "right",
title: "s2",
content: "c2"
},
{
path:'next.php'
element: "#na",
placement: "bottom",
title: "na1",
content: "na1"
},
{
element: "#nat",
placement: "bottom",
title: "na2",
content: "na2"
}
]);
$("#taketour").click(function(e){
e.preventDefault();
console.log("call tour");
// if ($(this).hasClass("disabled")) {
// return;
// }
tour.restart();
if (tour.ended()) {
console.log("tour end");
tour.restart();
}
});
});