添加一个images文件夹,里面可以随便放置图片,我这里面是放了六张图片,
可以多放,但是放多之后下面的数字也要跟着一块改,要不然的话出不来想要的想要的效果。
<head>
<title></title>
<style type="text/css">
img{width:200px;height:200px;}
</style>
<script src="jquery-1.9.1.js" type="text/javascript"></script>
<script type="text/javascript">
$(function () {
$('img').click(function () {
$('img').attr('src', 'images/' + Math.floor(Math.random() * 6 + 1) + '.jpg');
})
})
</script>
</head>
<body>
<img src="images/4.jpg" title="bady"/>
</body>