📄 setbgcolor.inc
字号:
<script language="javascript">
<!--
function setBgcolor(idname,sid,colorstr){
/*----set bgcolor----
idname element name
sid element index
colorstr bgcolor String
*/
var maxnum;
var thename;
var theid;
thename=eval(idname);
maxnum=thename.length;
if(isNaN(maxnum)==false){
for(i=0;i<maxnum;i++){
theid = eval(idname+"["+i+"]");
theid.style.backgroundColor="";
}
theid = eval(idname+"["+sid+"]");
theid.style.backgroundColor=colorstr;
}else{
thename.style.backgroundColor=colorstr;
}
}
-->
</script>
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -