提供前进、后退功能及其他JAVASCRIPT速成秘诀

2008-02-23 07:44:32来源:互联网 阅读 ()

新老客户大回馈,云服务器低至5折

通过了解下面的一些例子,并运用到你的WEB中,不久你马上成为JAVASCIPT的高手。
例(一)、在页面加入当前时间

< script language='JavaScript' >
tdy=new Date();
document.write('当前时间:',tdy.getHours());
document.write(':',tdy.getMinutes());
document.write(':',tdy.getSeconds());


例(二)、在页面加入文档最后修改日期

< script language='JavaScript' >
document.write('本页最后编辑日期:');
document.write(document.lastModified)


例(三)、在窗口的状态提示窗显示移动信息
(1) 在BODY之前
< script language='JavaScript' >
var msg='这是一个状态行滚动显示的JAVASCIPT程序,有兴趣的同志,可以粘贴!';
var i=1
function scroll()
{
mess=msg.substring(i,msg.length) ' ' msg.substring(0,i)
window.status=mess
i ;
if (i>=msg.length) i=1;
setTimeout('scroll()',200);
}

(2)在BODY标签中:

通过以上两步即可完成。

例(四)、提供前进、后退功能
< form >
< input type='button' value='<-'
onclick='history.go(-1) >
< input type='button' value='->'
onclick='history.go(1) >
< /form >

例(五)、在页面加入文档最后修改日期
< script language='JavaScript' >
document.write('本页最后编辑日期:');
document.write(document.lastModified)


例(六)、鼠标移到时发生动作
< A HREF='MAILTO:ZZY71616@163.NET'
onmouseover='alert('写信给我');
return true' > 信箱< /A >

例(七)、提供前进、后退功能

< H3 onclick='history.go(-1)' > 前一页< /H3>
< H3 onclick='history.go(-2)' > 前两页< /H3>
< H3 onclick='history.go(-3)' > 前三页< /H3>
< H3 onclick='history.go(1)' > 后一页< /H3>
< H3 onclick='history.go(2)' > 后两页< /H3>
< H3 onclick='history.go(3)' > 后三页< /H3>

例(八)、获得浏览器的属性
navigator.appCodename=undefinednavigator.appName=Microsoft Internet Explorernavigator.appVersion=4.0 (compatible; MSIE 5.0; Windows 98; DigExt)navigator.appAgent=undefined

标签:

版权申明:本站文章部分自网络,如有侵权,请联系:west999com@outlook.com
特别注意:本站所有转载文章言论不代表本站观点,本站所提供的摄影照片,插画,设计作品,如需使用,请与原作者联系,版权归原作者所有

上一篇:java方式来写js程序(demo)

下一篇:用Javascript实现父窗体的更新