GWT - 我需要一段像链接一样标记且可点击的文本

发布于 2024-11-09 01:37:30 字数 150 浏览 0 评论 0原文

我需要一段文本,它看起来像一个链接,但实际上仅在单击时调用处理程序。我首先想使用 Anchor 来实现这一点,但大多数网站都说,如果锚点没有 href,即指向 URL,则不要使用锚点。

那么,在 GWT 中执行此操作(语义上)正确的方法是什么?

I need to have a piece of text, which looks like a link but actually only calls a handler when clicked. I've first wanted to use an Anchor for that but most website say to not use an anchor if it doesn't have a href, i.e. point to a URL.

So, what's the (semantically) correct way to do this in GWT?

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

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

发布评论

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

评论(3

開玄 2024-11-16 01:37:30

使用标签并将其设计为锚点

<g:Label ui:field="theLabelName" />

Use a label and style it like an anchor

<g:Label ui:field="theLabelName" />
童话里做英雄 2024-11-16 01:37:30

如果您想触发历史事件,请使用超链接小部件 http://google-web-toolkit.googlecode.com/svn/javadoc/1.5/com/google/gwt/user/client/ui/Hyperlink.html

如果你只是想触发一个随机事件..与历史无关,使用像 Jan 提到的标签。

If you want to fire a history event, use the Hyperlink widget http://google-web-toolkit.googlecode.com/svn/javadoc/1.5/com/google/gwt/user/client/ui/Hyperlink.html

If you just want to fire a random event.. not related to history, use a label like Jan mentioned.

小瓶盖 2024-11-16 01:37:30

new HTML("我的可点击文本");
然后将点击处理程序添加到 HTML

new HTML("My Clickable Text");
Then add the click handler to the HTML

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