2013-10-06 88 views
0

我無法讓我的網站鏈接在Chrome和Safari中運行。它在Firefox中正常工作,但不會在Chrome和Safari中顯示爲鏈接。我有一個鏈接標題和「生物」,「視圖卷軸」和電子郵件。有人能告訴我如何解決這個問題嗎?代碼如下。謝謝!在Firefox或Safari瀏覽器中運行的網站鏈接

<!DOCTYPE html> 
<html xmlns="http://www.studiogo.tv"> 

<body align="center"> 
<link rel="stylesheet" href="format.css"> 

<map id="home"> 
<area shape="rect" coords="134,10,902,151" href="http://www.studiogo.tv" /> 
</map> 

<map id="links"> 
<area shape="rect" coords="325,165,426,188" href="http://www.bradgo.com/edit" alt="View Reel" title="View Reel" /> 
<area shape="rect" coords="326,187,362,207" href="http://www.studiogo.tv/bgobio.html" alt="BGOBIO" title="BGOBIO" /> 
<area shape="rect" coords="718,169,754,189" href="http://www.studiogo.tv/ngobio.html" alt="NGOBIO" title="NGOBIO" /> 
<area shape="rect" coords="325,135,480,153" href="mailto:[email protected]?subject="The Hush Project"" alt="" title="" /> 
<area shape="rect" coords="720,136,884,154" href="mailto:[email protected]?subject="The Hush Project"" alt="" title="" /> 
</map> 

<table border="0" width="95%" align="center"> 
<tr> 
    <td colspan-"1" align="center" bgcolor="black"><img src="STUDIOGO_BANNER.png" usemap="#home" border="0"></td> 
</tr> 
<tr> 
    <td colspan="1" align="center" bgcolor="black" border="0" width="95%"> 
<body align="center"> 

<iframe width="560" height="315" src="http://www.youtube.com/embed/ialX5OqPpv8" frameborder="0" allowfullscreen></iframe> 
</br> 
</body> 
</td> 
</tr> 
<tr> 
    <td colspan="1" align="center" bgcolor="black"><img src="STUDIOGO_BOTTOM.png" usemap="#links" border="0"></td> 
</tr> 
</table> 
</body> 
</html> 

回答

1

很難說沒有的例子,但你可以用這個啓動:

<area shape="rect" coords="325,135,480,153" href="mailto:[email protected]?subject='The Hush Project'" alt="" title="" /> 
<area shape="rect" coords="720,136,884,154" href="mailto:[email protected]?subject='The Hush Project'" alt="" title="" /> 

您正在使用引號郵件主題和食堂因爲這個問題的起點「,實際上鍊接關閉href。您應該用'。

替換主題的引號
相關問題