简体   繁体   中英

mailto link does not insert email address to mail form on iOS

My mailto link works well on Windows desktop but does not work with iOS. I does open the mail app but does not insert the email address to "To" section. Here's my html:

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

Try with:

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

I've had this problem before and the // fixed it.

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