GWT:如何抑制超链接,以便它不会更改我的历史标记
我想让我的超链接像按钮一样工作(仅响应 Click 事件),但是,当您单击它们时,它们会自动更改历史记录令牌,这会弄乱我的应用程序中的历史记录机制。 有没有办法抑制超链接的默认行为,以便它不会更改历史标记? 我尝试将 targetHistoryToken 设置为 null 但它不起作用。
谢谢,
I want to make my hyperlinks act like buttons (only respond to Click event) however, they change the history token automatically when you click on them, which messes up my history mechanism in my application. Is there a way to suppress the default behaviour of the hyperlink so it doesn't change the history token? I tried setting targetHistoryToken to null but it didn't work.
Thanks,
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(5)
请改用
Anchor
。正如
Hyperlink
的 java 文档所说:Use
Anchor
instead.As java doc of
Hyperlink
says:到目前为止,最简单的方法是创建您自己的扩展 Composite 的类,并仅呈现
;
作为 HTML 小部件。 我也遇到了同样的问题,这就是我解决它的方法。The easiest way by far to do this is to create your own class that extends Composite, and just renders an
<a> </a>
as a HTML widget. I had this same problem and that's how I got around it.正如 rustyshelf 所说,
http://gwt.google.com/samples/Showcase/ Showcase.html#CwStackPanel
Like rustyshelf says,
http://gwt.google.com/samples/Showcase/Showcase.html#CwStackPanel
只需从锚点中删除 href="" 即可。
Just remove href="" from Anchor.
我创建了这个类
I created this class