Modal pop up fade in on open click and fade out on close

后端 未结 4 1997
梦谈多话
梦谈多话 2021-01-22 18:30

I have a rather simple question for once. I have delete buttons that open modal pop ups to confirm or deny deletion. I would like these modal pop ups to fade in on click and fad

4条回答
  •  情书的邮戳
    2021-01-22 19:27

    Why do not use id for each button like this

    
    
    
    

    And the jquery like this

    $("#show").click(function() {
            $("#delAll1").fadeIn();
        });
    $("#delete").click(function() {
            $("#delAll1").fadeOut();
        });
    

提交回复
热议问题