tool.js

来自「客户」· JavaScript 代码 · 共 36 行

JS
36
字号
// JavaScript Document
function SearchLeft(){
//alert('aaa');
var width

width=parent.l.cols;
	if(width.indexOf("0,*")==0){
		//parent.l.cols = width.replace("0,*","230,*");
		//search_left.className="menuout1";
		top.parent.main.Imain.doSearch();
		//top.parent.main.Imain.searchs();
	}
	else if(width.indexOf("230,*")==0){
		//parent.l.cols = width.replace("230,*","0,*");
		//search_left.className="menuout";
		top.parent.main.Imain.doSearch();
		//top.parent.main.searchs.location="/search.jsp";
	}
}

function PersonnelRight(){
var width

width=parent.l.cols;
	if(width.indexOf("*,0")!=-1){
		parent.l.cols = width.replace("*,0","*,110");
		search_left.className="menuout1";
		top.parent.main.list.location.reload();
	}
	else if(width.indexOf("*,110")!=-1){
		parent.l.cols = width.replace("*,110","*,0");
		search_left.className="menuout";
		top.parent.main.list.location.reload();
	}
}

⌨️ 快捷键说明

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