2013-07-22 43 views
-1

這是我當前的代碼:HTML電子郵件模板解決方案在表TD中的JavaScript鏈接?

<td height="150" style="background: url(bg.jpg); cursor: pointer;" onClick="document.location.href='http://www.youtube.com';"> 

現在很明顯,使用JavaScript,這是不太可能在電子郵件客戶端的工作(是嗎?)。什麼是HTML解決方案?提前致謝!我試過包裝鏈接標籤,但似乎沒有辦法。

回答

0

鑑於你已經發布的信息(和@ PAM的回答您的評論),我認爲這將解決您的問題:

<td width="150" style="background-color:rgb(128,128,128); background-image:url('http://www.yoursite.com/yourpicture.gif'); cursor:pointer;"> 
<a href="http://www.youtube.com"> 

...Text... 

</a> 
</td> 

我已經添加了background-color屬性爲td,以便用戶在其電子郵件客戶端不顯示背景圖像時具有回退功能。當然,您應該將其設置爲與背景圖像相似的顏色。

0

不能你只需要輸入這樣的:

<td height="150"><a href="http://www.youtube.com"><img src="bg.jpg" /></a></td> 
+0

不幸的是,我需要它作爲背景圖片,因爲我已將文本覆蓋在表格的行內。 – user2482397

2

爲什麼不只是風格鏈路佔用TD的寬度和高度:

<td height="150" style="background: url(bg.jpg);"><a href="http://www.youtube.com" style="display:block;height:150px;width:100%;"></a></td> 
相關問題