web(ASP)常用代码[6]

[入库:2005年8月18日] [更新:2007年3月25日]

本文简介:选择自 lirefea 的 blog


设置该页为首页

<body bgcolor="#ffffff" text="#000000"> 
<a class="chlnk" style="cursor:hand" href  onclick="this.style.behavior='url(#default#homepage)';  this.sethomepage('你的网站名称);"><font color="000000" size="2" face="宋体">设为首页</font></a> 
</body> 



节日倒计时

<script language="javascript"> 
  var timedate= new date("october 1,2002"); 
  var times="国庆节"; 
  var now = new date(); 
  var date = timedate.gettime() - now.gettime(); 
  var time = math.floor(date / (1000 * 60 * 60 * 24)); 
  if (time >= 0) 
  document.write("现在离"+times+"还有: "+time +"天")
</script> 



单击按钮打印出当前页

<script language="javascript"> 
  if (window.print) { 
  document.write('<form>' 
  + '<input type=button name=print value="打印本页" ' 
  + 'onclick="javascript:window.print()"></form>'); 
  } 
</script> 


单击按钮‘另存为’当前页

<input type="button" name="button" value="保存本页"  onclick="document.all.button.execwb(4,1)"> 
<object id="button"  width=0  height=0  classid="clsid:8856f961-340a-11d0-a96b-00c04fd705a2"> 
<embed width="0" height="0"></embed> 
</object> 


显示系统当前日期

<script language=javascript> 
  today=new date(); 
  function date(){ 
  this.length=date.arguments.length 
  for(var i=0;i<this.length;i++) 
  this[i+1]=date.arguments } 
  var d=new date("星期日","星期一","星期二","星期三","星期四","星期五","星期六"); 
  document.write( 
  "<font color=##000000 style='font-size:9pt;font-family: 宋体'> ", 
  today.getyear(),"年",today.getmonth()+1,"月",today.getdate(),"日", 
  d[today.getday()+1],"</font>" ); 
</script> 

不同时间段显示不同问候语

<script language="javascript"> 
var text=""; day = new date( ); time = day.gethours( ); 
  if (( time>=0) && (time < 7 )) 
    text="夜猫子,要注意身体哦! " 
  if (( time >= 7 ) && (time < 12)) 
    text="今天的阳光真灿烂啊,你那个朋友呢?" 
  if (( time >= 12) && (time < 14)) 
    text="午休时间。您要保持睡眠哦!" 
  if (( time >=14) && (time < 18)) 
    text="祝您下午工作愉快! " 
  if ((time >= 18) && (time <= 22)) 
    text="您又来了,可别和mm聊太久哦!" 
  if ((time >= 22) && (time < 24)) 
    text="您应该休息了!" 
  document.write(text) 
</script> 

水中倒影效果
<img id="reflect" src="你自己的图片文件名" width="175" height="59"> 
  <script language="javascript"> 
  function f1() 
  { 
    setinterval("mdiv.filters.wave.phase+=10",100); 
  } 
  if (document.all) 
  { 
    document.write('<img id=mdiv src="'+document.all.reflect.src+'" 
    style="filter:wave(strength=3,freq=3,phase=0,lightstrength=30) blur() flipv()">') 
    window.onload=f1 
  } 
</script> 

慢慢变大的窗口
<script language="javascript"> 
  <!-- 
  var windowsheight=100 
  var windowswidth=100 
  var numx=5 
  function openwindow(thelocation){ 
  temploc=thelocation&, amp;, nbsp;
  if 
  (!(window.resizeto&&document.all)&&!(window.resizeto&&document.getelementbyid)) 
  { 
    window.open(thelocation) 
    return 
  } 
  windowsize=window.open("","","scrollbars") 
  windowsize.moveto(0,0) 
  windowsize.resizeto(100,100) 
  tenumxt() 
  } 
  function tenumxt(){ 
  if (windowsheight>=screen.availheight-3) 
    numx=0 
  windowsize.resizeby(5,numx) 
  windowsheight+=5 
  windowswidth+=5 
  if (windowswidth>=screen.width-5) 
  { 
    windowsize.location=temploc 
    windowsheight=100 
    windowswidth=100 
    numx=5 
    return 
  } 
  settimeout("tenumxt()",50) 
  } 
  //--> 
</script> 
<a href="javascript:openwindow('http://www.ccjol.com')">进入</a>


鼠标指向时弹出信息框
在<body></body>之间加上如下代码:
<a href onmouseover="alert('弹出信息!')">显示的链接文字</a> 


随机变换背景图象(一个可以刷新心情的特效)
在<head></head>之间加上如下代码: 
<script language="javascript"> 
  image = new array(4); //定义image为图片数量的数组 
  image [0] = 'tu0.gif' //背景图象的路径 
  image [1] = 'tu1.gif' 
  image [2] = 'tu2.gif' 
  image [3] = 'tu3.gif' 
  image [4] = 'tu4.gif' 
  number = math.floor(math.random() * image.length); 
  document.write("<body background="+image[number]+">"); 
</script> 

鼠标一碰就给颜色看的链接
在<body></body>之间加上如下代码: 
<p onmousemove="anniu()">你敢碰我,我就给点颜色你看!</p> 
<script language = "vbscript"> 
  sub anniu 
  document.fgcolor=int(256*256*256*rnd) 
  end sub 
</script> 

本文关键:web(ASP)常用代码
 

本站最佳浏览方式为 分辨率 1024x768 IE 6.0(或更高版本的 IE浏览器)

go top