//程序快捷键模块,主要是考虑用户体验和键盘事件 Namespace.register("U.CD.SK"); //注册运行js U.CD.SK.Shunt = function (e) { //var _c = U.CD.U.IsUSelf(); //获取用户登录Cookie. _c.userid _c.username _c.Loginid //if (!_c) {//U.CD.U.LoginApply(); // return; //} //如果未登录,弹出登录窗口。。 //U.CD.RT.CProject(_c.userid, U.CD.U.CUser.TNode[0]); e = e || event; //Crtl + * if (e.ctrlKey) { switch (e.keyCode) { case 83: $("#UCD_Top_L_BC")[0].onclick(); break; } return false; } } //U.CD.SK.MouseShunt = function (e) { // e = e || event; // switch (e.button) { // case 0: break; // case 1: break; // case 2: // U.CD.O.RMatel(e); // return false; // } //}