<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<script type="text/javascript" src="jquery-1.12.js"></script>
<script type="text/javascript">
$(function () {
$('img').mousemove(function () {
$('img').each(function() {
var str = $(this).attr('src').replace('4','2').replace('3','1');
$(this).attr('src', str);
})
$(this).nextAll().each(function () {
var str = $(this).attr('src').replace('2','4').replace('1','3');
$(this).attr('src', str);
})
})
})
</script>
</head>
<body>
<img src="stars/rank_3.gif"><img src="stars/rank_4.gif"><img src="stars/rank_3.gif"><img src="stars/rank_4.gif"><img src="stars/rank_3.gif"><img src="stars/rank_4.gif"><img src="stars/rank_3.gif"><img src="stars/rank_4.gif"><img src="stars/rank_3.gif"><img src="stars/rank_4.gif"><img src="stars/rank_3.gif"><img src="stars/rank_4.gif"><img src="stars/rank_3.gif"><img src="stars/rank_4.gif"><img src="stars/rank_3.gif"><img src="stars/rank_4.gif"><img src="stars/rank_3.gif"><img src="stars/rank_4.gif">
<p></p>
</body>
</html>
如果有<p></p> , 就会提示
否则正常 , 这是为什么 ? 这会影响程序运行吗 ?
花满楼的小前端a
相关分类