Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
比如说,我不喜欢使用 Anchor 或 Hyperlink,但更喜欢使用 Clickable Label。但是在为Label添加ClickHandler之后,当我将鼠标悬停时,没有我们在使用HyperLink或Anchor时经常看到的小手弹出。所以,
使用ClickHandler for Label时如何让小手弹出?
您可以通过两种方式实现:
单独使用 Gwt
lable.getElement().getStyle().setCursor(Cursor.POINTER);
并通过将 css 样式添加到lable(首选)
lable
lable.addStyleName(mylableStyle); .mylableStyle { cursor: pointer; }