이중모달

Chae Yun·2021년 12월 8일
<script>
	$(document).ready(function()
	{

		$('#employee_details2').on('beforeShow', function()
		{
			console.log('Submodal beforeShow event');
		}).on('show', function()
		{
			console.log('Submodal show event');
		}).on('beforeHide', function()
		{
			console.log('Submodal beforeHide event');
		}).on('hide', function()
		{
			console.log('Submodal hide event');
		});

	});
</script>

이걸로 간단하게 해결
employee_details2가 서브모달 id

0개의 댓글