小迪的Blog
学习ing...(注明:该Blog中的任何信息都非原创,只是作为个人的阅读笔记)

JavaScript--实现EMAIL功能

<script language="javascript">
function mailpage()
{
  mail_str = "mailto:xxx@21cn.com?subject=推荐网页: " + document.title;
  mail_str += "&body=我向你推荐这个页面,希望你喜欢!网页标题:" + document.title;
  mail_str += "。请点击查看: " + location.href;
  location.href = mail_str;
}
</script>
<A HREF = "javascript:mailpage()">E-mail</A>

posted on 2005-03-27 21:48  小迪  阅读(723)  评论(0编辑  收藏  举报