Closed hyunjun19 closed 7 years ago
아래 링크를 누르시면 다음의 코드를 찾을 수 있습니다. http://ax5.io/ax5ui-modal/demo/index.html
$('#modal-open').click(function () {
modal.open({}, function () {
// check your browser console
console.log(this);
var btn = jQuery(
'<button class="btn btn-default" type="button" style="margin-top: 100px;">' +
'Modal Close</button>');
btn.click(function () {
modal.close();
});
this.$["body-frame"].append(btn);
});
});
기존에 this.$.body.append
를 하도록 가이드 했지만 지금은 this.$["body-frame"].append
해야 정상작동합니다.
@thomasJang 감사합니다.
<div data-modal-els="body-frame" style="position: absolute;left:0;top:0;width:100%;height:100%;"></div>
위 div가 추가되면서 기존에 구현된 컨텐츠가 해당 div에 가려져서 클릭이 안되는 이슈가 발생하고 있습니다. div[data-modal-els="body-frame"]는 왜 추가된건가요?