简体   繁体   中英

href tag not working in Outlook 2013

For the life of me I do not understand why my href tags aren't working in outlook 2013. I have other anchor tags that are written the same way in the same html file. it seems that the href tags are stripped out altogether. They work in all other email clients, except outlook 2013. Is there anything I could be missing? Any help is appreciated.

  <table align="center" class="inner"> <tr> <td align="left" width="65"> <a href="https://facebook"> <img src="./img/social-fb.png" width="65" style="display:block;"> </a> </td> <td align="left" width="65"> <a href="https://www.instagram.com/"> <img src="./img/social-in.png" width="65" style="display:block;"></a> </td> </tr> </table> 

Try changing:

<a href="https://www.instagram.com/">

to:

<a href="http://www.instagram.com/">

Outlook may trip over https. A regular 'ol http redirects to https.

尝试始终在URL的开头处加上http,例如www.google.com,将其替换为https://www.google

The technical post webpages of this site follow the CC BY-SA 4.0 protocol. If you need to reprint, please indicate the site URL or the original address.Any question please contact:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM