jquery实现的随机显示图片效果代码:
下面介绍一下,点击按钮就可以实现图片的随机切换效果,代码实现非常的简单。
代码实例如下:
<!DOCTYPE html> <html> <head> <meta charset=" utf-8"> <meta name="author" content="http://www.softwhy.com/" /> <head> <title>蚂蚁部落</title> <style type="text/css"> img{ width:100px; height:100px; } </style> <script type="text/javascript" src="mytest/jQuery/jquery-1.8.3.js"></script> <script type="text/javascript"> $(function(){ $(‘#bt‘).click(function(){ var num = Math.floor(Math.random() * 8 + 1); $(‘img‘).attr(‘src‘,num+‘.jpg‘); }) }) </script> </head> <body> <img src="1.jpg" id="img1" /> <input id="bt" type="button" value="切换图片" /> </body> </html>
以上代码当点击按钮的时候就可以随机切换图片,代码非常的简单,这里就不多介绍了。
代码注释:
1.关于Math.floor()可以参阅JavaScript的Math对象的floor()方法一章节。
2.Math.random()可以参阅JavaScript的Math对象的random()方法一章节。
3.attr()可以参阅jQuery的attr()方法一章节。
原文地址是:http://www.softwhy.com/forum.php?mod=viewthread&tid=8185
更多内容可以参阅:http://www.softwhy.com/jquery/
时间: 2024-10-07 05:25:22