?? main_func.js
字號:
<script language="JavaScript">
/**********************************************************************/
/* Function : showHellow Created At July,12,2003
/* Input : None
/* Output : None
/* Description : 問候語提示
/***********************************************************************/
function showHello() {
var welcomestring;
var d = new Date();
h = d.getHours();
if(h<6)
welcomestring="凌晨好";
else if (h<9)
welcomestring="早上好";
else if (h<12)
welcomestring="上午好";
else if (h<14)
welcomestring="中午好";
else if (h<17)
welcomestring="下午好";
else if (h<19)
welcomestring="傍晚好";
else if (h<22)
welcomestring="晚上好";
else
welcomestring="夜里好";
document.write(welcomestring);
}
</script>
?? 快捷鍵說明
復制代碼
Ctrl + C
搜索代碼
Ctrl + F
全屏模式
F11
切換主題
Ctrl + Shift + D
顯示快捷鍵
?
增大字號
Ctrl + =
減小字號
Ctrl + -