feventhandler.js

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

JS
16
字号
function handleClick()
{
        var oRow;
        var roleCode,funCode;
        if (arguments.length==0)
                return;
        oRow=arguments[0];//当前单击的行对象
        funCode= oRow.cells(1).innerText;

        roleCode=parent.frames("SelBut").document.getElementById("roleID").value;
        var strURL="functionAivial.jsp?action=getnoselectlist&roleID="+roleCode+"&funCode="+funCode;
        var strURL1 ="functionSelected.jsp?action=getselectlist&roleID="+roleCode+"&funCode="+funCode;
        parent.frames("FunctionList").window.location.replace(strURL);
        parent.frames("AddFunction").window.location.replace(strURL1);

}

⌨️ 快捷键说明

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