functionl.js

来自「一个较好的公务员管理系统软件源代码」· JavaScript 代码 · 共 21 行

JS
21
字号
var PreiorSel;
function selectThis(RowID)
{
	var FunCode;
	if (PreiorSel!="" && PreiorSel!=null)
   		Tb.rows(PreiorSel).className="Normal";
	 RowID.className="Selected";
    FunCode=RowID.cells(0).innerText;
 	PreiorSel=RowID.id;
 	showInfo(FunCode);
 }

 function showInfo(FunCode)
{
  	var url;
  	url="functionAivial.jsp?RoleID="+RoleID.value+"&FunCode="+FunCode;
  	parent.frames.item("FunctionList").window.location.replace(url);
  	url="functionSelected.jsp?RoleID="+RoleID.value+"&FunCode="+FunCode;
  	parent.frames.item("AddFunction").window.location.replace(url);
}

⌨️ 快捷键说明

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