2016-09-19 64 views
0

如何將圖像添加到Anchor元素?我嘗試了一個找到的解決方案here,但仍然在圖像旁邊顯示目標URL文本。有任何想法嗎 ?謝謝。我使用GWT 2.5.1。GWT:將圖像添加到Anchor

+0

剛剛刪除了我的答案,因爲它沒有我想象的那麼有用:-)公共錨(SafeHtml html,String href)構造函數呢? – Sebastian

+1

我創建了錨點:Anchor anchor = new Anchor(「」,「http://toto.com」,「_blank」);然後我將圖像添加到錨點:anchor.getElement()。appendChild(myImageInstance.getElement());它的工作:) – belgoros

+0

很高興你的工作:-) – Sebastian

回答

0

是爲我工作,並且在新標籤中打開一個鏈接的解決方案:

Image image = new Image("path/to/your/image.png"); 
Anchor anchor = new Anchor("", "http://your-fancy-url.com", "_blank"); 
anchor.getElement().getStyle().setCursor(Style.Cursor.POINTER); 
anchor.getElement().appendChild(mylo.getImage().getElement()); 

謝謝塞巴斯蒂安和peotest幫助。

0
new Anchor("<img src=\"path/to/your/image.png\">", true, "http://example.com", "_blank");