通過了解下面的一些例子並運用到你的WEB中不久你馬上成為JAVASCIPT的高手
例(一)在頁面加入當前時間
< script language=JavaScript >
tdy=new Date();
documentwrite(當前時間:tdygetHours());
documentwrite(:tdygetMinutes());
documentwrite(:tdygetSeconds());
例(二)在頁面加入文檔最後修改日期
< script language=JavaScript >
documentwrite(本頁最後編輯日期);
documentwrite(documentlastModified)
例(三)在窗口的狀態提示窗顯示移動信息
() 在BODY之前
< script language=JavaScript >
var msg=這是一個狀態行滾動顯示的JAVASCIPT程序有興趣的同志可以粘貼!;
var i=
function scroll()
{
mess=msgsubstring(imsglength)+ +msgsubstring(i)
windowstatus=mess
i++;
if (i>=msglength) i=;
setTimeout(scroll());
}
()在BODY標簽中:
通過以上兩步即可完成
例(四)提供前進後退功能
< form >
< input type=button value=<
onclick=historygo() >
< input type=button value=>
onclick=historygo() >
< /form >
例(五)在頁面加入文檔最後修改日期
< script language=JavaScript >
documentwrite(本頁最後編輯日期);
documentwrite(documentlastModified)
例(六)鼠標移到時發生動作
< A HREF=MAILTO:ZZY@NET
onmouseover=alert(寫信給我);
return true > 信箱< /A >
例(七)提供前進後退功能
< H onclick=historygo() > 前一頁< /H>
< H onclick=historygo() > 前兩頁< /H>
< H onclick=historygo() > 前三頁< /H>
< H onclick=historygo() > 後一頁< /H>
< H onclick=historygo() > 後兩頁< /H>
< H onclick=historygo() > 後三頁< /H>
例(八)獲得浏覽器的屬性
navigatorappCodename=undefinednavigatorappName=Microsoft Internet ExplorernavigatorappVersion= (compatible; MSIE ; Windows ; DigExt)navigatorappAgent=undefined
From:http://tw.wingwit.com/Article/program/Java/JSP/201311/19317.html