?? fixheight.js
字號:
var content;
var sidebar;
function getDivs() {
if (document.getElementById) {
sidebar = document.getElementById('sidebar');
content = document.getElementById('content');
}
else if (document.all) {
sidebar = document.all['sidebar'];
content = document.all['content'];
}
}
function fixHeight () {
if (sidebar) {
content.style.height = ""
if ( content.offsetHeight <= sidebar.offsetHeight) {
content.style.height = sidebar.offsetHeight + "px";
}
}
}
?? 快捷鍵說明
復制代碼
Ctrl + C
搜索代碼
Ctrl + F
全屏模式
F11
切換主題
Ctrl + Shift + D
顯示快捷鍵
?
增大字號
Ctrl + =
減小字號
Ctrl + -