效果
部署代码
把下方代码添加到子比主题设置
-全局&功能
-自定义javascript代码
<script>
$(document).ajaxComplete(function(event, xhr, settings) {
// 当所有的 AJAX 请求完成时执行以下代码
$('.modal-dialog').each(function() {
// 遍历每个加载的模拟框
$(this).prepend('<span style="position: absolute;bottom: -35px;z-index: 99;left: 0;right: 0;text-align: center;color: #efefef;user-select: none;pointer-events: none;">点击任意地方关闭</span>');
});
});
</script>
© 版权声明
THE END
暂无评论内容