📄 menu.js
字号:
//<- menu.js (v1.0) ->
function menuClose()
{
var counter;
var tables = document.all.tags("table");
for (counter = 0; counter < tables.length; counter++)
{
if (tables[counter].className == "menu")
{
tables[counter].style.display = "none";
}
}
}
function menuFocus()
{
window.event.cancelBubble = "true";
}
function menuOpen(target)
{
menuClose();
document.all(target).style.display = "block";
}
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -