📄 bg.js
字号:
var ipt = document.getElementsByTagName("input");
for(i=0;i<ipt.length;i++){
ipt[i].onmouseover = function(){
this.style.backgroundColor = "#E8F3FF";
}
ipt[i].onmouseout = function(){
this.style.backgroundColor = "";
}
}
var iptse = document.getElementsByTagName("select");
for(i=0;i<iptse.length;i++){
iptse[i].onmouseover = function(){
this.style.backgroundColor = "#E8F3FF";
}
iptse[i].onmouseout = function(){
this.style.backgroundColor = "";
}
}
var iptte = document.getElementsByTagName("textarea");
for(i=0;i<iptte.length;i++){
iptte[i].onmouseover = function(){
this.style.backgroundColor = "#E8F3FF";
}
iptte[i].onmouseout = function(){
this.style.backgroundColor = "";
}
}
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -