代码如下:
if(typeof $ != "undefined"){ //-------主要是这句。
lipstickshowpop()
}else{
window.onload = function(){
lipstickshowpop()
}
}
function lipstickshowpop() {
$("body").on("click",".popclickimg",function(){
if($('.product_add_to_cart .popdetimg').length<1){
text = '<div class="popdetimg">'+$('.popdetimg').html()+'</div>';
$('.product_add_to_cart').append(text);
}
else $('.popdetimg').show();
});
//-----------------
$(".popdetimg span.close").live("click",function(){
$('.popdetimg').hide();
});
}