묻고답하기
page_full_width" class="col-xs-12" |cond="$__Context->page_full_width">
하루에 한번만 여러개 사이트중 하나를 랜덤으로 열게 할려면 (부탁 합니다)
2003.07.25 05:16
한개의 사이트를 하루에 한번만 새창으로 열리는것은 스크립터를 찾았는데 사이트가 여러개 일때 랜덤으로 할려면 어떻게 해야 되는지 부탁 드립니다.
현재는 밑에 소스 중에서 사이트 주소 라고 적혀있는곳에 하나의 사이트를 걸어 놓은 상태 입니다. 그기에 몇개의 사이트를 랜덤으로 할려면 어떻게 해야 되는지요~~
<!-- saved from url=(0022)http://internet.e-mail -->
<html>
<head>
<script language="javascript">
function getCookie(name) {
var from_idx = document.cookie.indexOf(name+'=');
if (from_idx != -1) {
from_idx += name.length + 1
to_idx = document.cookie.indexOf(';', from_idx)
if (to_idx == -1) {
to_idx = document.cookie.length
}
return unescape(document.cookie.substring(from_idx, to_idx))
}
}
function notice_setCookie( name, value, expiredays ){
var todayDate = new Date();
todayDate.setDate( todayDate.getDate() + expiredays );
document.cookie = name + "=" + escape( value ) + "; path=/; expires=" + todayDate.toGMTString() + ";"
}
function openwin(){
var blnCookie = getCookie("blnEvent");
if ( !blnCookie ) {
window.open("사이트주소");
notice_setCookie( "blnEvent", "done" , 1);
}
}
</script>
</head>
<body onunload="openwin()">
</body>
</html>
현재는 밑에 소스 중에서 사이트 주소 라고 적혀있는곳에 하나의 사이트를 걸어 놓은 상태 입니다. 그기에 몇개의 사이트를 랜덤으로 할려면 어떻게 해야 되는지요~~
<!-- saved from url=(0022)http://internet.e-mail -->
<html>
<head>
<script language="javascript">
function getCookie(name) {
var from_idx = document.cookie.indexOf(name+'=');
if (from_idx != -1) {
from_idx += name.length + 1
to_idx = document.cookie.indexOf(';', from_idx)
if (to_idx == -1) {
to_idx = document.cookie.length
}
return unescape(document.cookie.substring(from_idx, to_idx))
}
}
function notice_setCookie( name, value, expiredays ){
var todayDate = new Date();
todayDate.setDate( todayDate.getDate() + expiredays );
document.cookie = name + "=" + escape( value ) + "; path=/; expires=" + todayDate.toGMTString() + ";"
}
function openwin(){
var blnCookie = getCookie("blnEvent");
if ( !blnCookie ) {
window.open("사이트주소");
notice_setCookie( "blnEvent", "done" , 1);
}
}
</script>
</head>
<body onunload="openwin()">
</body>
</html>