我想尝试使用javascript我想在阴影框中显示HTML页面只有一次使用cookies访问网站我怎么能这样做? HTML页面准备好,但我想知道如何在用户访问网站时使用javascript一次在阴影框中显示它?
如果你可以帮我在阴影框中显示html页面那么棒
<!DOCTYPE html>
<html>
<head>
<style>
#ShadowBox {
width: 100px;
height: 100px;
display: block;
background-color: blue;
display:none;
}
</style>
<script src="http://ajax.googleapis.com/ajax/libs/jquery/1.10.1/jquery.min.js"></script>
<script>
// function for clearing the cookkie
$("#ClearCookie").click(function(){
ClearCookie('visited');
});
//function for settinf the cookie
function setCookie(cname, cvalue, exdays) {
var d = new Date();
d.setTime(d.getTime() + (exdays * 24 * 60 * 60 * 1000));
var expires = "expires=" + d.toGMTString();
document.cookie = cname + "=" + cvalue + "; " + expires;
}
//function for reading cookie
function getCookie(cname) {
var name = cname + "=";
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 "";
}
//For Setting the Cookie, you can call this onload or at the displaying of the shadowbox.
function MarkVisited() {
setCookie("visited", "visited", 10)
}
function ClearCookie(cname) {
setCookie("visited", "", 1)
}
//Put this in the document ready section. so it runs at onload
$( document ).ready(function() {
if (getCookie('visited') == "") {
$('#ShadowBox').show();
}
MarkVisited();
});
// On Load Section End
</script>
</head>
<body>
<div id="ShadowBox">
</div>
<button id="ClearCookie">Clear Cookie</button>
</body>
</html>
答案 0 :(得分:0)
您可以在显示阴影框时设置cookie
这是我曾在http://jsfiddle.net/gd7Xz/工作的小提琴 你的守则的工作小提琴http://jsfiddle.net/G3XAb/
希望这有助于你,请勾选答案
<!DOCTYPE html>
<html>
<head>
<style>
#ShadowBox {
width: 100px;
height: 100px;
display: block;
background-color: blue;
display:none;
}
</style>
<script src="http://ajax.googleapis.com/ajax/libs/jquery/1.10.1/jquery.min.js"></script>
<script>
//function for settinf the cookie
function setCookie(cname, cvalue, exdays) {
var d = new Date();
d.setTime(d.getTime() + (exdays * 24 * 60 * 60 * 1000));
var expires = "expires=" + d.toGMTString();
document.cookie = cname + "=" + cvalue + "; " + expires;
}
//function for reading cookie
function getCookie(cname) {
var name = cname + "=";
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 "";
}
//For Setting the Cookie, you can call this onload or at the displaying of the shadowbox.
function MarkVisited() {
setCookie("visited", "visited", 10)
}
function ClearCookie(cname) {
setCookie(cname, "", 1)
}
//Put this in the document ready section. so it runs at onload
$(document).ready(function() {
if (getCookie('visited') == "") {
$('#ShadowBox').show();
}
MarkVisited();
});
// On Load Section End
</script>
</head>
<body>
<div id="ShadowBox"></div>
<button id="ClearCookie" onClick="ClearCookie('visited')">Clear Cookie</button>
</body>
</html>