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

后端 未结 4 1977
梦谈多话
梦谈多话 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:26

    Use fadeIn() on the right selector('#'+id), this in the current context would be the global object.

    function showModal(id) {   
        $('#'+id).fadeIn();
        //$(this).fadeIn('slow');
    }
    function hideModal(id) {
        $('#'+id).fadeOut();
    }
    

    DEMO

提交回复
热议问题