我正在编写代码,该代码将为首次使用 ColorBox 的访问者发送消息。我一直在引导代码,这就是我到目前为止所拥有的......
<html>
<head>
<script type="text/javascript">
<script src="../colorbox/jquery.colorbox.js"></script>
<script type="text/javascript" src="scripts/jquery.cookies.2.2.0.min.js"></script>
<script>
function loadMsg()
{
$(document).ready(function(){
if ($.cookie('newsletter') != '0') {
$.colorbox({href:"newsletter.html"});
$.cookie('newsletter', '1', { expires: 60}); }
}}
</script>
</head>
<body onload="loadMsg()">
<h1>Hello World!</h1>
</body>
</html>
这会阻止弹出窗口第二次出现。你能帮我弄清楚我错过了什么吗?