我正在研究代码,它将首次用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>
你能帮我弄清楚我错过了什么吗?