js实现收藏主页

时间:2017-06-13

上网的时候,经常看到弹出框,提示收藏主页的功能。这样不仅使网站留住客户,也让用户更方便的找到自己想要的内容!

下面是简单的js代码实现效果:


<html>
 <head>
  <title> New Document </title>
  <meta charset="utf-8">
  <script>
  function setHomepage() {
	if (document.all) {
		document.body.style.behavior='url(#default#homepage)';
		document.body.setHomePage("http://www.phpddt.com");	
	} else if (window.sidebar) {
		if(window.netscape) {
			try {
				netscape.security.PrivilegeManager.enablePrivilege("UniversalXPConnect");
			} catch (e) {
				alert( "该操作被浏览器拒绝,如果想启用该功能,请在地址栏内输入 about:config,然后将项 signed.applets.codebase_principal_support 值该为true" );
			}
		}
	}
}
  </script>
 </head>
 <body>
  <button onclick="setHomepage()">收藏主页</button>
 </body>
</html>


显示效果如下图:

php教程

上一条:jQuery中的ajax的get()函数读取页面 下一条:jQuery中的ajax的load()函数读取页面

相关文章

最新文章