Framework7:swiper滑块上的链接不重定向

时间:2017-01-13 02:29:04

标签: javascript html html-framework-7

我的swiper滑块上的幻灯片上有一个链接,可以转到名为year.html的文件

链接:

<a href="year.html">Add by year, make & model</a>

swiper滑块源:

http://pastebin.com/ggN3TqgA

year.html(取自源代码中的listview)

http://pastebin.com/ibKKUJ54

我知道路由是用Ajax完成的,我已经编辑了厨房水槽ios滑块的源代码,并添加了一个链接,它工作正常。

我不确定为什么我的项目阻止链接。我试过了:

mainView.router.loadPage('year.html');

在my-app.js但无济于事。谁知道为什么?

1 个答案:

答案 0 :(得分:0)

您的问题不在于滑块,您忘记了作为索引页面的主page类,让ajax知道在哪里呈现新页面year.html数据非常重要。

只需添加:

    <div class="pages navbar-through toolbar-through">
        <div data-page="index" class="page">
滑块前的

,不要忘记在</body>标记之前关闭2个DIV。

enter image description here