微信公众号 
图码生活

每天发布有五花八门的文章,各种有趣的知识等,期待您的订阅与参与
电脑报 1992-2001 十年文章全集
电脑报 1992-2001 十年文章全集
包含从 1992 年 - 2001 年间,两万余篇期刊文章,查询最少输入两个字符
随便看看
读取中
读取中
标题让窗口仅弹出一次
栏目网络与通信
作者林夕
发布2001年44期
  第一步:把如下代码加入<head>区域中
  <SCRIPT language="JavaScript">
  <!--
  function openpopup(){
  window.open("welcome.htm","","width=300,height=300")
  }
  function get_cookie(Name){ 
  var search=Name + "="
  var returnvalue = "";
  if(document.cookie.length > 0){ 
  offset=document.cookie.indexOf(search)
  if(offset!= -1){// if cookie exists
  offset +=search.length
  //set index of beginning of value
  end = document.cookie.indexOf(";",offset);
  //set index of end of cookie value
  if(end == -1)
  end=document.cookie.length;
  returnvalue=unescape(document.cookie.substring(offset,end))  
  }
  }
  return returnvalue;
  }
  function loadpopup
  if(get_cookie('popped')==''){
  openpopup()
  document.cookie="popped=yes"
  }
  }
  //-->
  </SCRIPT>
  第二步:把<body>中内容改为:
  <body bgcolor="#fef4d9" onunload="loadpopup()>