您现在的位置:首页 >> 建站经验 >> 内容

玩转弹出窗口代码(弹窗代码)精华教程,弹窗代码大全(6)

时间:2009/9/14 11:34:09 点击:5697

  核心提示:经常上网的朋友可能会到过这样一些网站,一进入首页立刻会弹出一个窗口,或者按一个连接或按钮弹出,通常在这个窗口里会显示一些注意事项、版权信息、警告、欢迎光顾之类的话或者作者想要特别提示的信息。其实制作这样的页面效果非常的容易,只要往该页面的HTML里加入几段Javascript代码即可实现。下面俺就带...

JS弹窗代码24 小时弹

<script language="javascript">
function get_usercookie(Name) {
var search = Name + "="
var returnvalue = "";
if (document.cookie.length > 0) {
   offset = document.cookie.indexOf(search)
   if (offset != -1) {
    offset += search.length
    end = document.cookie.indexOf(";", offset);
    if (end == -1)
    end = document.cookie.length;
    returnvalue=unescape(document.cookie.substring(offset, end))
   }
}
return returnvalue;
}
function OpenWin(){
window.showModelessDialog('http://www.tao536.com/index.php','','scroll:1;status:1;help:1;resizable:1;dialogWidth:550px;dialogHeight:450px;dialogTop:200;dialogLeft:200;');
document.all.a1.focus();
}

if (get_usercookie('newasp_user_cookie')==''){
var Then = new Date();
Then.setTime(Then.getTime() + 36000*1000);
document.cookie='newasp_user_cookie=yes;expires='+ Then.toGMTString();
document.write("<body onload=\"OpenWin();\">");
}
</script>

作者:冷月湖 录入:冷月湖 来源:原创
相关评论
发表我的评论
  • 大名:
  • 内容:
  • 亿万站网址导航-站长之家(www.yiwanzhan.cn) © 2006-2024 版权所有 All Rights Reserved.
  • Email:xiegr71@163.com 站长QQ:329700870 京ICP备07500142号