我需要使用jquery在click事件中关闭Popup

时间:2014-12-29 11:27:52

标签: jquery html5

这是我的小提琴

  

http://jsfiddle.net/Raghava0330/6f9ge64f/

 . In this fiddle after clicking Login Button, Popup should be closed. Thanks in advance 

1 个答案:

答案 0 :(得分:0)

您可以将其添加到您的jQuery代码中:

$("#login_btn").click(function(){
    $(".popup").close();
});

login_btn是弹出窗口内的按钮。