父级页面:
.reward-frame{
position: fixed;
z-index: 999999999;
top: 0;
left: 0;
width: 100vw;
height: 100vh;
background: #fff;
border: none;
}
//显示弹窗
$(".tran").click(function () {
var src = ‘{{url(‘reward?id=’)}}’+id;
$(".reward-frame").attr(“src”,src).removeClass(“hidden”);
});
子级页面:
//关闭窗口
$(".close").click(function () {
$(window.parent.document).find(".reward-frame").addClass(‘hidden’);
});