2017-03-10 52 views
0

我的mailto鏈接在Windows桌面上運行良好,但不適用於iOS。我打開郵件應用程序,但不會將電子郵件地址插入「收件人」部分。這裏是我的html:mailto鏈接不會將電子郵件地址插入到iOS上的郵件表格

<div class="email"> 
    <span class="info-ico"><i class="fa fa-envelope-o" aria-hidden="true"></i></span> 
    <a class="txt" href="mailto:[email protected]">[email protected]</a> 
</div> 
+0

請參閱[this](http://stackoverflow.com/questions/2317431/i-cant-get-mailto-links-to-open-the-mail-app-from-mobile-safari-when-using- jqto)尋求解決方案。 –

+0

[使用jQTouch時無法使用mailto鏈接打開移動Safari的郵件應用程序。什麼可能是錯的?](http://stackoverflow.com/questions/2317431/i-cant-get-mailto-links-to-open-the-mail-app-from-mobile-safari-when-using-jqto ) –

+0

不,我的情況不同:當點擊郵件鏈接時,我可以在iOS上打開郵件應用程序 – Lee

回答

0

嘗試用:

<div class="email"> 
    <span class="info-ico"><i class="fa fa-envelope-o" aria-hidden="true"></i></span> 
    <a class="txt" href="mailto://[email protected]">[email protected]</a> 
</div> 

我以前有這個問題,並固定它的//

相關問題