?? 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 + -