📄 openwin.js
字号:
var oldContent="";
function turnit(newContent) {
if(document.all[newContent].style.display=="none") {
if(oldContent!="") {
document.all[oldContent].style.display="none";
}
oldContent=newContent;
document.all[newContent].style.display="";
} else {
if(oldContent!="")
oldContent=newContent;
document.all[newContent].style.display="none";
}
}
function turnit2() {
if(oldContent!="") {
document.all[oldContent].style.display="none";
oldContent="";
}
}
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -