今晚月色真美

设置Cookie总结

代码记录

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
// 收藏功能
function addFavorite() {
var title = '意法半导体STM32/STM8技术社区 - 提供最新的ST资讯和技术交流';
var URL = 'http://www.stmcu.org.cn/';
// IE10
if(document.all) {
window.external.addFavorite(URL, title);
} else {
alert('手动 Ctrl+D 可以收藏我们的网站哦');
}
}

// 设置cookie,同一域名都可获取
function setCookie(name, value, exdays) {
var exdays = exdays || 1024;
var d = new Date();
d.setTime(d.getTime() + (exdays * 24 * 60 * 60 * 1000));
document.cookie = name + "=" + escape(value) + ";path=/;expires=" + d.toGMTString();
}
// 读取cookies,判断是否存在设置的name
function getCookie(name) {
var name = name + "=";
var ca = document.cookie.split(';');
for (var i = 0; i < ca.length; i++) {
var c = ca[i].trim();
if (c.indexOf(name) == 0) {
return c.substring(name.length, c.length);
}
}
return "";
}

function checkCookie() {
var user = getCookie("msgCookie");
var width = window.innerWidth||document.documentElement.clientWidth||document.body.clientWidth;
if(width >= 1080) {
if (user != "") {
msgHide();
} else {
msgShow();
}
}
}

// 关闭时设置cookie
function closeModal() {
msgHide();
setCookie("msgCookie", 'msgCookie');
}
function msgHide() {
document.getElementById('newsTipsModal').style.display = 'none';
}
function msgShow() {
document.getElementById('newsTipsModal').style.display = 'block';
}

// init
checkCookie();

 评论

本站总字数统计:49.8k

感谢您的浏览, 本站总访问量为 次 。
载入天数...载入时分秒...