如何随机显示图片计数器?

时间:2010-05-16 15:21:00 

如何随机显示图片计数器?

一切就绪,看看我们的代码:

count.asp

< html >
< head >
< meta http-equiv="Content-Type"
content="text/html; charset=gb2312" >
<title>千变计数器 - aspxhome.com</title>
</head>
<body>
<p>
<%
dim out
countfile=server.mappath("aspcount.txt")
set objfile=server.createobject("scripting.filesystemobject")
' 定义一个服务器组件
set out=objfile.opentextfile(countfile,1,false,false)
counter=out.readline
' 读取数据
out.close
set objfile=server.createobject("scripting.filesystemobject")
set out=objfile.createtextfile(countfile,TRUE,FALSE)
application.lock
' 暂时琐定
counter=counter+1
' 访客次数加1
out.writeline(counter)
' 写入数据
application.unlock
' 解锁
out.close
%>
<script language="JavaScript"> 
function countdisp(countvar){
var countvar1="000000"+countvar;
' 实现随机显示,不足6位以0补全 
var howFar1=countvar1.length;
countvar1=countvar1.substring(howFar1, howFar1-1)
var index=""+Math.floor(Math.random()*10);
if (index=="10"){
index="0"};
for (var icount=0;icount< 6;icount++={ 
var g=countvar1.substring(icount,icount+1);
document.images[icount].src="http://
localhost/images/"+index+g+".gif";


</script></p>
<!--预载图像数组-->
您是第<img src="https://www.aspxhome.com/images/00.gif" height=20 width=20>
<img src="https://www.aspxhome.com/images/00.gif" height=20 width=20>
<img src="https://www.aspxhome.com/images/00.gif"height=20 width=20>
<img src="https://www.aspxhome.com/images/00.gif"height=20 width=20>
<img src="https://www.aspxhome.com/images/00.gif"height=20 width=20>
<img src="https://www.aspxhome.com/images/00.gif"height=20 width=20>位访问者!
<script language="JavaScript">
count(counter);
' 调用count()函数,实现计数器的动态图像显示
</script>
</body>
</html>

 

标签:计数器,图片,随机
0
投稿

猜你喜欢

  • 在windows下使用python进行串口通讯的方法

    2022-01-03 11:10:19
  • Python利用pythonping处理ping的示例详解

    2023-08-12 00:28:45
  • Pandas中时间序列的处理大全

    2023-08-14 06:18:30
  • 设计工作者必须了解的常识

    2008-04-06 13:56:00
  • ASP自动清除ACCESS数据库的日文字符

    2007-11-28 17:40:00
  • Python 使用类写装饰器的小技巧

    2022-09-16 05:54:08
  • Python3中函数参数传递方式实例详解

    2022-05-22 23:32:20
  • 基于Python编写一个简单的服务注册发现服务器

    2022-06-11 20:23:31
  • python中xlutils库用法浅析

    2023-06-05 15:22:26
  • iframe框架用JavaScript子页面控制父页面

    2009-01-19 13:43:00
  • python读写文件with open的介绍

    2022-04-03 22:19:34
  • SQL语句实现查询当前数据库IO等待状况

    2024-01-17 02:04:32
  • pycharm console 打印中文为乱码问题及解决

    2023-06-15 22:30:02
  • python使用urllib2模块获取gravatar头像实例

    2022-12-11 03:16:36
  • python文件处理详解

    2023-11-01 21:48:34
  • Python中处理字符串之islower()方法的使用简介

    2021-03-26 16:40:35
  • 如何查看python中安装库的文件位置

    2021-04-17 04:09:31
  • 特殊字符的json序列化总结大全

    2023-12-04 00:36:58
  • Python开发虚拟环境使用virtualenvwrapper的搭建步骤教程图解

    2022-02-08 00:33:29
  • 基于fastapi框架的异步解读

    2022-12-19 21:45:24
  • asp之家 网络编程 m.aspxhome.com