$('.back:visible').remove();
Using CSS
display:none
you can't remove it, you just hide it.
If you using $('.back:visible').hide()
/$('.back:visible').css('display', 'none');
you can using $('.back:visible').show()
to show it. But via .remove()
, you can't show it again.
与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…