Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我的 mailto 属性在默认的 android 浏览器(4.0 之前)中不起作用。它会打开一个找不到链接的新浏览器。
<form enctype="text/plain" method="post" action="mailto:physio@info.de">
如果您以这种方式使用表单,则表示您正在尝试发布到服务器。因此,当您单击此表单的提交按钮时,您的浏览器正试图通过地址“mailto:physio@info.de”向服务器发送邮件,该地址不是有效的 URL。
正确使用 mailto 链接是使用锚点,这将为您提供所需的效果:
<a href="mailto:physio@info.de">email me</a>