使用模板标签在新窗口中打开链接

发布于 2024-11-10 12:22:33 字数 149 浏览 0 评论 0原文

我在 Play 框架中使用以下模板标签来创建锚标签:

#{a @Application.foo( bar )} foobar #{/a}

有谁知道如何修改它以在新页面中打开链接(即 target="_blank")?

I am using the following template tag in the Play framework to create an anchor tag:

#{a @Application.foo( bar )} foobar #{/a}

Does anyone know how this can be modified to open the link in a new page (ie, target="_blank")?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

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

发布评论

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

评论(1

鹊巢 2024-11-17 12:22:33

怎么样:

<a href="@{@Application.foo( bar )}" target="_blank">foobar</a>

编辑:这应该有效

#{a @Application.foo( bar ), target:"_blank"} foobar #{/a}

what about :

<a href="@{@Application.foo( bar )}" target="_blank">foobar</a>

?

EDIT : this should work

#{a @Application.foo( bar ), target:"_blank"} foobar #{/a}
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文