我正在使用从 KendoUI 页面获取并适用于我的应用程序的自定义标签条。\
它有 3 个选项卡(home、startOfDay 和 stop)。每个选项卡都转到一个 HTML 页面。
问题是这样的,我可以毫无问题地从主页导航到其他选项卡之一,但之后如果我尝试导航到另一个选项卡,它只会转到空白页。
这是我的布局代码。
<section data-role="layout" data-id="default">
<header data-role="header">
<div data-role="navbar">FnF Driver Application</div>
</header>
<!--View content will render here-->
<footer data-role="footer">
<div data-role="tabstrip" id="custom-tabstrip">
<a data-icon="home" href="home.html">Home</a>
<a data-icon="globe" href="startOfDay.html">Start Of Day</a>
<a data-icon="toprated" href="stops.html">Stops</a>
</div>
</footer>
</section>
每个页面都包含在一个看起来像这样的 div 中......
<body>
<div id="home/startOfDay/stops" data-role="view" data-layout="default">
~Content goes here~
</div>
</body>
任何帮助将不胜感激。
谢谢!!!