第一次在这里提问,所以我希望我能掌握所有信息,但如果我遗漏了什么,请随时要求澄清。
我尝试使用bootstrap tour库在页面中创建游览。我可以开始它,并且在大多数情况下它运行相当顺利,除非我试图让它检查变量并根据需要跳过某些步骤。
我无法在我的真实项目中复制我的整个代码库,因此我尝试使用我能想到的相关部分制作jsfiddle。我承认我之前从未使用过jsfiddle并且它没有工作我认为因为我可能没有正确加载游览文件。我已链接到独立文件,因此它们包含运行所需的相关引导程序位。我承认我是一个完整的新手,因此我不确定为什么这些文件似乎没有正确加载和触发,但这是一个完全不同的错误。无论如何,这是我的基本代码:
HTML:
<body>
<button id="start" class="btn btn-default">Start the tour</button>
<div id="box1" class="box">Element 1</div>
<div id="box2" class="box">Element 2</div>
<div id="box3" class="box">Element 3</div>
<div id="box4" class="box">Element 4</div>
<div id="box5" class="box">Element 5</div>
</body>
JS:
var foo = true;
var tour = new Tour({
storage: false,
debug: true,
steps: [
{
orphan: true,
animation: true,
backdrop: true,
title: "index 0 / Step 1",
content: "schtuff"
}, {
animation: true,
element: "#box1",
placement: right,
title: "index 1 / Step 2",
content: "click this box to continue, should skip to Index 5 / Step 6",
template: "<div class='popover tour'>"+
"<div class='arrow'></div>"+
"<h3 class='popover-title'></h3>"+
"<div class='popover-content'></div>"+
"<div class='popover-navigation'>"+
"</div>"+
"</div>",
onNext: function(tour){
if (foo == true){
alert("skip to 5");
tour.goTo(5);
} else {
tour.next();
};
}
}, {
orphan: true,
animation: true,
backdrop: true,
title: "index 2 / Step 3",
content: "moar schtuff"
}, {
element: "#box2",
placement: right,
title: "Index 3 / Step 4",
content: "schtuff"
}, {
element: "#box3",
placement: right,
title: "Index 4 / Step 5",
content: "schtuff"
}, {
element: "#box4",
placement: right,
title: "Index 5 / Step 6",
content: "schtuff"
}
]
});
$("#start").on("click", function(){
tour.start(true);
};
//initialize the tour
tour.init();
我已经阅读了这里的问题,例如this one并且它已经接近了,但我遇到的问题是因为onNext函数中有if / else检查当我在控制台中运行调试器时,它将检查变量是否为真,将跳过并显示正确的工具提示,但也会触发常规的&#39; next&#39;虽然无法看到它的功能。我只在控制台中显示的调试器工具中看到它。当&#39; next&#39;单击正确的更进一步的尖端,而不是沿着阵列继续通过其余的尖端,它就好像下一个&#39;在原始工具提示上被击中。 (这很难形容对不起)。
所以如果游览(0) - &gt;游览(1) - &gt; (检查foo = true) - &gt; tour(5) - &gt; (而不是去游览(6)它回去并开始游览(3),因为它认为游览(5)实际上是游览(2)
也许我从根本上不了解tour.goTo()函数应该如何工作,但我只是没有想法。我试过的是在if语句中停止游览
if (foo == true){
tour.end();
tour.start(true);
tour.goTo(5);
} else {
tour.next();
}
这会在控制台中抛出错误,说明由于巡视结束而无法显示showStep。奇怪的是,在我的页面的另一部分,我不得不停止游览并使用超时重启(我不得不等待一个元素加载),并且end-start-goTo工作正常。该代码看起来像这样(但不在jsfiddle中):
onNext: function(tour){
tour.end();
setTimeout(function(){
tour.start(true);
tour.goTo(4);
}, 500);
}
看起来它似乎是导致问题的if / else语句,不是在两个选项之间进行选择,而是通过触发两者。
提前感谢您提供给我的任何帮助。对小说感到抱歉,但我想确保尽可能多地提供信息。
答案 0 :(得分:2)
在遍历代码之后,您似乎无法在onNext
处理程序中触发不同的步骤。这是因为&#34; next&#34;按钮在显示步骤时设置,并显示按顺序显示下一步骤的操作(也在显示步骤时确定)。我也没有看到任何方法,以防止先前设置的处理程序被触发。发生这种情况是因为它们捕获了辅助函数中的当前步骤,该步骤显示了当前步骤显示时的下一步。 goTo
方法似乎也没有抢占这个助手回调。
将模板替换为:
template: "<div class='popover tour'>" +
"<div class='arrow'></div>" +
"<h3 class='popover-title'></h3>" +
"<div class='popover-content'></div>" +
"<div class='popover-navigation'>" +
"<button class='btn btn-default' data-role='prev'>« Prev</button>" +
"<span data-role='separator'>|</span>" +
"<button id='skipBtn' class='btn btn-default'>Next »</button>" +
"<button class='btn btn-default' data-role='end'>End tour</button>" +
"</div>" +
"</div>",
并为模板中的skipBtn
文档添加委托处理程序。
$(document).on('click', '#skipBtn', function(e) {
e.preventDefault();
if (foo) {
tour.goTo(5);
}
else {
tour.next();
}
});
您还需要删除onNext
处理程序。
https://jsfiddle.net/vgayf3sL/
的工作小提琴注意:您的小提琴中存在的错误,其中right
个展示位置值为#start
。需要引用它们,并且在public class Foo
{
public Foo(IService1 svc1, IService2 svc2, int entityId) { }
}
单击处理程序后缺少右括号。您应该能够查看浏览器调试器控制台以查看这些错误。