$(function(){ // 공유하기 $('.modal-share-open').click(function (e) { e.preventDefault(); $('#modal-share').css('display','flex'); }); $('.close-modal').click(function (e) { e.preventDefault(); $('#modal-share').css('display','none'); }); });