在网页中可以设置如“联系我们”、“问题反馈”等所谓的邮箱链接,类似网页超链接,只是可以直接打开默认邮箱程序。
使用<a href=”mailto:[email protected]“>联系我们</a>就可以。
如下代码实例:
1 <html> 2 <head> 3 <title>contact us</title> 4 </head> 5 <body> 6 <a href="mailto:[email protected]">contact us</a> 7 </body> 8 </html>
显示:
点击直接链接,直接可以打开默认的邮件服务器。
原创文章,作者:ItWorker,如若转载,请注明出处:https://blog.ytso.com/17524.html