下面是我的带有关闭按钮的弹出代码,我需要在单击关闭按钮图像时关闭弹出窗口
N
答案 0 :(得分:0)
由于您使用的是jQuery。
$("#closebutton").on("click", function(e) { $("YOUR POP UP DIV").hide() })
答案 1 :(得分:0)
定位关闭按钮的父元素,并使用jquery hide方法隐藏。
$("#closebutton").on("click", function(e) { $(this).parent().hide() })