我不知道为什么我的弹出窗口不会关闭。调试太久 0_o 点击“Credit Card Inform Me When Available”打开弹窗
我有以下js:
// Popup
jQuery(".showpop").click(function () {
var NewHeight = $(this).offset().top + $(this).height();
jQuery("#light").css({
'top': NewHeight + 'px'
});
jQuery("#light").show();
jQuery("#fade").show();
});
jQuery(".hidepop").click(function () {
jQuery("#light").hide();
jQuery("#fade").hide();
return false;
});
我尝试使用 $ 而不是 jQuery,更改了目标 ids/classes,但它仍然不会关闭。