为了账号安全,请及时绑定邮箱和手机立即绑定

Firebug上的一个bug

Firebug上的一个bug

hhhzihao2 2016-05-10 19:17:08
<!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()

查看完整回答
1 反对 回复 2016-05-11
  • 1 回答
  • 0 关注
  • 1103 浏览
慕课专栏
更多

添加回答

举报

0/150
提交
取消
意见反馈 帮助中心 APP下载
官方微信