图片链接到电子邮件不起作用

时间:2016-07-29 20:47:02

标签: html5 image email

当有人按下图片按钮时,我无法让我的图片链接工作,我不知道为什么。它适用于我的手机和电脑,但出于某种原因,它不能在其他人的电脑上工作。请让我知道我需要做些什么来解决这个问题。

谢谢。

<div class="logo2">
  <a href="mailto:careers@remaxfutura.com?Subject=Career%20information%20Request;" target="_top">
<img src="http://www.remaxfutura.com/admin/web/files/1469815489_Request_an_Appointment.png" style="display:inline-block;" /> </a></div>
</div>

2 个答案:

答案 0 :(得分:1)

你的代码的标记很糟糕。可能是问题所在。

<div class="logo2">
  <a href="mailto:careers@remaxfutura.com?Subject=Career%20information%20Request;" target="_blank">
      <img src="http://www.remaxfutura.com/admin/web/files/1469815489_Request_an_Appointment.png" style="display:inline-block;" /> 
  </a>
</div>

答案 1 :(得分:1)

代码应该是这样的,你不需要在添加到mailto的链接时设置目标,代码应该是这样的

<div class="logo2">    
<a href="mailto:careers@remaxfutura.com?Subject=Career%20information%20Request;>
<img src="http://www.remaxfutura.com/admin/web/files/1469815489_Request_an_Appointment.png" style="display:inline-block;" />
</a>
</div>