我想知道是否有人可以提供帮助?
我设法创建了一个带有时间延迟的弹出窗口脚本。我需要它在第一次访问时打开,而不是在三个月内再次打开。
我完全迷失了,今天和昨天的大部分时间都在网上搜索。我是 Javascript 和 Cookie 的新手。
先感谢您。扫罗
这是弹出打开窗口的脚本。
<script type="text/javascript">
function start(theURL, winName,w,h) {
var left = (screen.width/2)-(w/2);
var top = (screen.height/2)-(h/2);
var targetWin = window.open (theURL, winName, 'toolbar=no, location=no, directories=no, status=no, menubar=no, scrollbars=no, resizable=no, copyhistory=no, width='+w+', height='+h+', top='+top+', left='+left);
}
setTimeout(start, 1*1000, 'pop_up.html', 'pop-up-title',200,100);
</script>