<!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> , 就会提示否则正常 , 这是为什么 ? 这会影响程序运行吗 ?
1 回答
已采纳
花满楼的小前端a
TA贡献79条经验 获得超33个赞
$(this).nextAll()会选中这个p元素,而这个p元素没有src属性,所以就出现undefined.replace()了;
可以这样$(this).nextAll().not('p').each()或$(this).nextAll('img').each()
添加回答
举报
0/150
提交
取消