Grails GSP 页面片段与 jQuery Mobile 的链接问题

发布于 2024-11-30 20:49:38 字数 723 浏览 0 评论 0原文

我正在为多页 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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

伪装你 2024-12-07 20:49:38

这是 jquery-mobile 问题:您需要添加 rel="external" 作为指向其他页面的内部链接。请参阅http://jquerymobile.com/demos/1.0a2/#文档/pages/docs-pages.html

This 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

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文