⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 menuview.js

📁 1 除掉了 时间 限制 2 除掉了 人数 限制 改为 500人 原为5人 3 发现一点小缺陷 增加人员的时候没有判断 登陆名是否重复! 自己写吧~~~:) 4 又 是一点缺陷
💻 JS
字号:
function MenuItem_onmouseout(e) {
   e.style.borderBottom = "medium none";
   e.style.borderLeft = "medium none";
   e.style.borderRight = "medium none";
   e.style.borderTop = "medium none";

}

function MenuItem_onmouseover(e) {
   e.style.borderBottom = "outset 1px";
   e.style.borderLeft = "outset 1px";
   e.style.borderRight = "outset 1px";
   e.style.borderTop = "outset 1px";
}

function MenuItem_onmousedown(e) {
   e.style.borderBottom = "inset 1px";
   e.style.borderLeft = "inset 1px";
   e.style.borderRight = "inset 1px";
   e.style.borderTop = "inset 1px";
}

function MenuItem_onmouseup(e) {
   e.style.borderBottom = "outset 1px";
   e.style.borderLeft = "outset 1px";
   e.style.borderRight = "outset 1px";
   e.style.borderTop = "outset 1px";
}

function  MenuItem_onclick_fortheTop(url) //add by hk 2001/10/26
{
   var  subwin ;

     if(url.indexOf('Delete')> -1 || url.indexOf('State')> -1 )
     {
        subwin = window.open(url,'','scrollbars=yes,left= 320,top=220,height=180,width=300,menubar=no,location=no,toolbar=no,resizable=yes','');    
     }
     else
     {
        subwin = window.open(url,'','scrollbars=yes,left=120,top=60,height=400,width=550,menubar=no,location=no,toolbar=no,resizable=yes','');    
     }
   
     //subwin.location.reload(true);
     subwin.opener = this ;
}
function  reloadpage1()
{//alert (window.opener.location);
var pageurl;
pageurl=String(window.opener.location);
pageurl=pageurl.toUpperCase();
//alert(pageurl);
//alert(pageurl.indexOf("_PAGEOUT"))
//LIST OR PAGEOUT 
if (pageurl.indexOf("_PAGEOUT")!=-1 || pageurl.indexOf("_LIST")!=-1) 
{

window.opener.location=window.opener.location;
}
else
{ //可以保留位子=
 window.opener.document.execCommand('Refresh');
}
}


function ShowRest()
{

if (document.all('more').style.zIndex!=6) 
	document.all('more').style.visibility='visible';
else
	document.all('rest').style.visibility='visible';
//else
//	window.alert(document.all('more').style.zIndex);
}


function HideAll()
{
document.all('MenuNew').style.visibility='hidden';
document.all('more').style.visibility='hidden';
document.all('rest').style.visibility='hidden';
}

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -