2012-02-29 10 views
0

私のホットスポットはどのブラウザでも動作しますが、電子メールで送信するとホットスポットは機能しなくなります。メールでDreamweaverのホットスポットを使用する

メールの内容を変更する必要がありますか?

<img src="images/contact_40.jpg" alt="Contact" width="712" height="194" border="0"  usemap="#Map" /> 
    </td> 
</tr> 
</table> 

<map name="Map" id="Map"> 
<area shape="rect" coords="305,100,455,115" href="mailto:[email protected]?subject=Newsletter Enquiry" target="_blank" /> 
<area shape="rect" coords="313,117,465,133" href="http://www.bohleonline.com" target="_blank" /> 
</map> 

    <map name="Map2" id="Map2"> 
<area shape="rect" coords="21,63,202,102" href="http://www.bohleonline.com/interpreting.php" target="_blank" /> 
<area shape="rect" coords="15,109,203,150" href="http://www.bohleonline.com/translation.php" target="_blank" /> 
<area shape="rect" coords="8,159,212,211" href="http://www.bohleonline.com/conference-equipment-hire.php" target="_blank" /> 
<area shape="rect" coords="12,223,231,267" href="http://www.bohleonline.com/conference-coordination.php" target="_blank" /> 
</map> 

答えて

1

ほとんどの電子メールクライアントは、様々な理由(確認メールの収穫が1である)のために、画像のレンダリングを防ぐ - あなたのケースでは、また、(たとえば、GMailなど)特定の電子メールクライアントは「イメージマップ」内のリンクを防ぐことができますようです同じように。簡単な解決策は、レンダリングされないかもしれないが、壊れたリンクとして電子メールに含まれる標準のアンカータグを使用することです。

さらに、mailto:タグを使用しないことをお勧めします。これは、ユーザーに電子メールクライアントがインストールされている(さらに重要なのは実際に設定されている)場合のみです。サーバー側で処理されるフォームを持つ連絡先ページをユーザーに指示します。

+0

偉大な答え。しました。 – iambriansreed

関連する問題