?? main.js
字號(hào):
$(document).ready(function(){
$("input[@type=text],input[@type=file],input[@type=password],textarea").focus(function(){
$(this).css("border-color","#FF9900").css("background-color", "#FFFFCC");
}).blur(function(){
$(this).css("border-color","#1D9BC0").css("background-color", "#FFF");;
}).addClass("input_txt");
});
CheckAll = function(control, checkboxs){
control.click(function(){
if(this.checked){
checkboxs.each(function(i){
this.checked = true;
});
}else{
checkboxs.each(function(i){
this.checked = false;
});
}
});
}
OpenWin = function(url, width, height){
window.open(url,"mywin","width=" + width + "px,height=" + height +"px, scrollbars=yes, top=" + (screen.Height/2 -height/2) + "px,left=" + (screen.Width/2 -width/2)+"px");
}
?? 快捷鍵說明
復(fù)制代碼
Ctrl + C
搜索代碼
Ctrl + F
全屏模式
F11
切換主題
Ctrl + Shift + D
顯示快捷鍵
?
增大字號(hào)
Ctrl + =
減小字號(hào)
Ctrl + -