-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
75 lines (73 loc) · 2.31 KB
/
index.html
File metadata and controls
75 lines (73 loc) · 2.31 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
<!doctype html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>js代码制作点击设为首页和加入收藏功能</title>
<meta name="description" content="js代码制作两个非常常用的网页特效,点击按钮设为首页、加入收藏、收藏本页功能。是网页制作必备的常用网页特效。" />
<style>
*{margin:0;padding:0;list-style-type:none;}
a,img{border:0;}
.demo{width:300px;margin:130px auto 0 auto;text-align:center;}
</style>
</head>
<body>
<div class="demo">
<a href="javascript:void(0);" id="setHomePage" onclick="SetHome(this)" style="behavior:url(#default#homepage);">
<img src="images/sethome.gif" width="57" height="51" alt="设为首页" />
</a>
<a href="javascript:addToFavorite()">
<img src="images/addfavorite.gif" width="57" height="51" alt="" />
</a>
<a href="javascript:AddFavorite(document.location.href,document.title);">
<img src="images/share.jpg" width="57" height="51" alt="收藏本页" />
</a>
</div>
</body>
</html>
<script>
//收藏本页
function AddFavorite(sURL, sTitle){
try{
window.external.addFavorite(sURL, sTitle);
}
catch(e){
try{
window.sidebar.addPanel(sTitle, sURL, "");
}
catch(e){
alert("加入收藏失败,请使用Ctrl+D进行添加");
}
}
}
//收藏设置页面(首页)
function addToFavorite(){
var d="http://www.baidu.com/";
var c="百度";
if(document.all){
window.external.AddFavorite(d,c);
}else{
if(window.sidebar){
window.sidebar.addPanel(c,d,"");
}else{
alert("对不起,您的浏览器不支持此操作!\n请您使用菜单栏或Ctrl+D收藏本站。");
}
}
}
//设为首页
function SetHome(obj){
try{
obj.style.behavior='url(#default#homepage)';
obj.setHomePage('http://www.baidu.com/');
}catch(e){
if(window.netscape){
try{
netscape.security.PrivilegeManager.enablePrivilege("UniversalXPConnect");
}catch(e){
alert("抱歉,此操作被浏览器拒绝!\n\n请在浏览器地址栏输入“about:config”并回车然后将[signed.applets.codebase_principal_support]设置为'true'");
}
}else{
alert("抱歉,您所使用的浏览器无法完成此操作。\n\n您需要手动将'http://www.baidu.com'设置为首页。");
}
}
}
</script>