?? info.js
字號:
var msg=new Array();
msg[3]="操作中出現錯誤,請重試一次。\n如有問題,請與管理員聯系。";
msg[4]="數據庫中不存在相應信息,請重新查詢!";
/*根據當前的操作結果,作出相應的提示信息*/
function showMessage(actionResult)
{
if (actionResult==null || actionResult==0)//未進行任何操作
return;
alert(msg[actionResult]);
}
?? 快捷鍵說明
復制代碼
Ctrl + C
搜索代碼
Ctrl + F
全屏模式
F11
切換主題
Ctrl + Shift + D
顯示快捷鍵
?
增大字號
Ctrl + =
減小字號
Ctrl + -