已解决,解决方案,在跳转前价格为延迟加载,利用定时器完成.
function myclick(){
$(".popup-bg").hide();
$(".popup-content").hide()
$(".popup-btn-box").hide();
$("#close-popup-btn").hide();
setTimeout(function(){
location.href="http://<{$ad_sider['ad_link']}>";
},100);
让它跳转前隐藏,这样的话返回的时候就没了,缺点就是要增加时间,可能影响用户体验,
}