05 6月 2020
remodal iframe ウィンドウ内からモーダルウィンドウを閉じる
remodal.js でiframe要素を開いた場合。
閉じるボタンがあるにはあるけど、なぜかコンテンツの中からウィンドウを閉じたい。
親
<a href="#modalopen">モーダルを開く</a>
<div class="remodal" data-remodal-id="modalopen">
<iframe src="sample.html" frameborder="0"></iframe>
</div>
<script>
function modalclose(){
$('.remodal').remodal().close();
}
</script>
親側で関数を用意
子(sample.html)
<button class="remodal-close">閉じる</button>
<script>
$(function(){
$('.remodal-close').on('click', function(){
window.parent.modalclose();
});
});
</script>
window.parent で親の関数操作