我已经将游览功能隐含到了我的wordpress网站中,但是第一步是循环的,这里我只有少量代码。所以我不确定问题可能在哪里。有人对这个有经验么?

var tour = new Tour({
  debug: true,
  storage: false,
  steps: [
  {
    orphan: true,
    title: "DTC ZERO TOUR",
    content: "This tour will show you where important information is, so you never miss a thing!"
  },
  {
    orphan: true,
    title: "Second Title",
    content: "Some directional type stuff"
  }
]});

tour.init(true);
tour.start();


让我知道我还有什么要告诉你的。 CSS和JS都被读取。只是陷入一个连续的循环

最佳答案

我曾因使用多个“孤立”步骤而遇到相同的问题-在Bootstrap V3.0.0和V3.3.4之间已被打破,但我不确定确切的时间...无论如何,如果您将Bootstrap版本回滚到V3.0.0您将不再有此问题。

关于php - Bootstrap Tour正在第一步启动[wordpress],我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/29503277/

10-11 03:12