GWT - 我需要一段像链接一样标记且可点击的文本
我需要一段文本,它看起来像一个链接,但实际上仅在单击时调用处理程序。我首先想使用 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(3)
使用标签并将其设计为锚点
Use a label and style it like an anchor
如果您想触发历史事件,请使用超链接小部件 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.
new HTML("我的可点击文本");
然后将点击处理程序添加到 HTML
new HTML("My Clickable Text");
Then add the click handler to the HTML