2010-06-29 92 views

回答

0

設置它的目標=「_空白」

32
<a href="http://www.google.com" target="_blank"> 
    <img width="220" height="250" border="0" align="center" src=""/> 
</a> 
7

如果使用腳本來瀏覽網頁,使用open方法與目標_blank打開一個新窗口/標籤:

<img src="..." alt="..." onclick="window.open('anotherpage.html', '_blank');" /> 

但是,如果您希望搜索引擎找到該頁面,則應該將該圖像封裝在常規鏈接中。

+0

工作就像一個魅力 – 2018-02-26 18:38:51

5

你可以像這樣

<a href="http://www.w3c.org/" target="_blank">W3C Home Page</a> 

找到這個網頁

http://www.corelangs.com/html/links/new-window.html 

goreb

3
<a href="http://www.google.com" target="_blank"> //gives blank window 
<img width="220" height="250" border="0" align="center" src=""/> // show image into new window 
</a> 

看到代碼

4

假設你要顯示的圖像縮略圖其中是50x50像素和林K將實際的圖像,你可以做

<a href="path/to/image.jpg" alt="Image description" target="_blank" style="display: inline-block; width: 50px; height; 50px; background-image: url('path/to/image.jpg');"></a> 

當然,最好給該鏈接類或ID,並把它放在你的CSS

1

要在新標籤中使用開:

target = "_blank" 

要在同一選項卡內打開:

target = "_self"