首页 > 其他分享 >jQuery练习4京东商品详情页面(切换显示中图)

jQuery练习4京东商品详情页面(切换显示中图)

时间:2023-01-25 19:45:24浏览次数:63  
标签:jQuery src img function 京东 中图 children 页面

视频

//10. 当鼠标悬停在某个小图上,在上方显示对应的中图
function midumImg() {
  $('#icon_list>li').hover(function () {
    //获取到 自己 src
    var src = $(this).children('img').attr('src')

    //设置中图的src
    var srcMedium = src.replace('.jpg', '-m.jpg')
    $('#mediumImg').attr('src', srcMedium)

    //加红框
    $(this).children('img').addClass('hoveredThumb')
  }, function () {
    $(this).children('img').removeClass('hoveredThumb')
  })
}

标签:jQuery,src,img,function,京东,中图,children,页面
From: https://www.cnblogs.com/chuixulvcao/p/17067157.html

相关文章