jquery点击事件click无效

在做图片删除的时候发现动态添加的图片右上角叉叉点击事件click无效?

试试这个解决方法(click后面参数加子元素)

//图片删除
$('#addImgBox').on('click','.img i',function(){
   console.log('del')
   if($(this).parent().parent().children(".img").length==1)
   $('#tip').css('display','none')
   $(this).parent().remove()
})

  

相关文章:

  • 2022-12-23
  • 2022-12-23
  • 2021-08-27
  • 2021-12-09
  • 2022-01-24
  • 2021-07-27
  • 2021-11-17
猜你喜欢
  • 2021-08-26
  • 2022-12-23
  • 2021-12-05
  • 2022-12-23
  • 2022-12-23
  • 2021-07-26
  • 2022-01-23
相关资源
相似解决方案