实现EMAIL本页功能

[入库:2005年8月18日] [更新:2007年3月24日]

本文简介:选择自 net_lover 的 blog

实现email本页功能

 

例子:

 

e-mail本页

<html>
<title>测试</title>
<body>
<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>

本文关键:email
  相关方案
Google
 

本站最佳浏览方式为 分辨率 1024x768 IE 6.0(或更高版本的 IE浏览器)

go top