javascript实现EMAIL推荐本页功能

来源:互联网 发布:burpsuite js上传 编辑:程序博客网 时间:2024/05/16 07:08

<html>
<title>测试</title>
<body>
<script language="javascript">
function mailpage()
{
  mail_str = "mailto:xxxh@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>


 
原创粉丝点击