通过了解下面的一些例子并运用到你的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