我在模态中有此内容,如果用户要关闭模态或在模态中打印内容,则用户可以选择。
这是btn:
<button type="button" class="btn btn-secondary closemodal">Close</button>
这是脚本:
<script>
$(document).ready(function() {
$(".closemodal").click(function() {
$(".ModalLargeContent").hide('.ModalLargeContent');
});
});
</script>
注1:如果不预览或不单击打印内容功能,则直接关闭模式时,模式将关闭。因此,我确信我的脚本可以正常工作。
注2:数据释放与我的脚本相同,因此,如果在单击CLOSED btn之前先预览pdf,则两者均无法正常工作。
答案 0 :(得分:0)
次要修复
<script>
$(document).ready(function() {
$(".closemodal").click(function() {
$(".ModalLargeContent").modal('hide');
});
});
</script>
这是隐藏的正确
$(".ModalLargeContent").modal('hide');