⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 bg.js

📁 asp网站 挺不错的 试一下吧 网上购物系统 呵呵呵
💻 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 + -