📄 config.js
字号:
//config 页面发生行为共用的方法function config_share(str) { var href = ""; switch (str) {// case "file_first_kind":href="/hr/fileFirstKind.do?method=toUrl&url=success";break; case "file_second_kind":href="/hr/fileSecondKind.do?method=toUrl&url=success";break; case "file_third_kind":href="/hr/fileThirdKind.do?method=toUrl&url=success";break; case "file_major_kind":href="/hr/majorKind.do?method=toUrl&url=success";break; case "file_major":href="/hr/major.do?method=toUrl&url=success";break; case "file_public_char":href="/hr/publicChar.do?method=toUrl&url=success";break; case "question_first_kind":href="/hr/questionFirstKind.do?method=toUrl&url=success";break; case "question_second_kind":href="/hr/questionSecondKind.do?method=toUrl&url=success";break; case "user":href = "/hr/users.do?method=toUrl&url=users";break; case "primary_key":href = "/hr/primaryKey.do?method=toUrl&url=success";break; default:break; } return href;}//config 页面点击事件function config_click(e) { var element = event.srcElement; var href = config_share(element.name);//获取点击对象的链接路径 if (!href) { return; } else { location.href = href; }}
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -