一、加入到收藏夹:
?
自己设置设置网址和名称:
?
<a href="javascript:void(0);" onclick="javascript:window.external.AddFavorite('http://www.baidu.com','百度')" title="收藏本站到你的收藏夹"><font size="-1" color="#FFE09E">收藏本站</font></a>
?
?
?当前页面网址和title:
?
<a href="javascript:void(0);" onClick="window.external.AddFavorite(document.location.href,document.title)">加入收藏</a>
?
?
二、设为首页
?
图片链接:
?
<a style="cursor:hand" onclick="this.style.behavior='url(#default#homepage)';this.setHomePage('http://www.baidu.com');"> <img width=16 height=16 border=0 src="images/Logo.gif"> <u> 设为首页</u> </a>
?
?
?文字链接:
?
?
<a onclick="this.style.behavior='url(#default#homepage)';this.setHomePage('http://www.baidu.com');" href="#">设为首页</a> 按钮: <input type="button" value="设为首页 " onclick="this.style.behavior='url(#default#homepage)';this.setHomePage('http://www.baidu.com');" href="javascript:;">
?
?
?
?
打开页面或离开页面时设为首页或收藏,就是在<body>里加一个onload或onunload事件。基本不会使用这样的方式,太影响用户体验了。
?
调用邮件:
<a href="mailto:helloworld@sina.com">与我联系</a>
?
?
?
?
?
?
参考感谢:
http://blog.163.com/very_apple/blog/static/2775923620121021111420627/
?