Grails GSP 页面片段与 jQuery Mobile 的链接问题
我正在为多页 jQuery Mobile 页面创建单个 gsp。在 div 中定义了三个不同的片段,如下所示:
<div id="page1" data-role="page">
我尝试了多种方法来链接到页面上的另一个片段,但没有成功。在所有情况下,链接都会带我返回索引页面。
<li><g:link data-icon="arrow-r" controller="foursome" action="summary" id="${foursomeInstance.id}" fragment="page2">Page2</g:link></li>
<li><a data-icon="arrow-r" href="#back9">Page2</a></li>
<li><a data-icon="arrow-r" href="/foursome/summary/${foursomeInstance.id}#back9">Page2</a></li>
有关于这个主题的好材料吗?这很有帮助 - 带有片段参数的 Grails render()
I'm creating a single gsp for a multi-page jQuery Mobile page. There are three different fragments defined in a div like this:
<div id="page1" data-role="page">
I've tried several ways to link to another fragment on the page without success. In all cases, the links take me back to the index page.
<li><g:link data-icon="arrow-r" controller="foursome" action="summary" id="${foursomeInstance.id}" fragment="page2">Page2</g:link></li>
<li><a data-icon="arrow-r" href="#back9">Page2</a></li>
<li><a data-icon="arrow-r" href="/foursome/summary/${foursomeInstance.id}#back9">Page2</a></li>
Is there any good material on this subject? This was helpful - Grails render() with a fragment parameter
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
这是 jquery-mobile 问题:您需要添加
rel="external"
作为指向其他页面的内部链接。请参阅http://jquerymobile.com/demos/1.0a2/#文档/pages/docs-pages.htmlThis is jquery-mobile issue: You need to add
rel="external"
for internal links to other pages. See http://jquerymobile.com/demos/1.0a2/#docs/pages/docs-pages.html