在 html 上使用 mailto,如何在 iOS 中从 Safari 打开电子邮件应用程序?
Using mailto on the html, how can I open the email app from Safari in iOS?
我有一个简单的表单,其中包含一个用于打开电子邮件的按钮 window。
在我的笔记本电脑上,使用 Chrome,一切正常。但是在我的 iPhone 上,它没有打开电子邮件应用程序。
这是HTML
<form action="mailto:myemail@hotmail.com" method="post">
<Button type="submit" class="button">Contact Me Now</Button>
</form>
我该如何解决这个问题?
为了解决这个问题,我删除了表单并改用锚标记。
<div class="button">
<a href="mailto:email@hotmail.com">Contact Me Now</a>
</div>
我有一个简单的表单,其中包含一个用于打开电子邮件的按钮 window。 在我的笔记本电脑上,使用 Chrome,一切正常。但是在我的 iPhone 上,它没有打开电子邮件应用程序。
这是HTML
<form action="mailto:myemail@hotmail.com" method="post">
<Button type="submit" class="button">Contact Me Now</Button>
</form>
我该如何解决这个问题?
为了解决这个问题,我删除了表单并改用锚标记。
<div class="button">
<a href="mailto:email@hotmail.com">Contact Me Now</a>
</div>