gpt4 book ai didi

javascript - IE8显示图像,Chrome/Firefox使用BlockUI不显示图像

转载 作者:行者123 更新时间:2023-11-28 08:44:22 25 4
gpt4 key购买 nike

IE8显示图像,Chrome/Firefox不使用BlockUI显示图像

我的代码是:

<link href="css/jquery-ui.css" rel="stylesheet" />
<script src="js/jquery-1.8.0.js"></script>
<script src="js/jquery.blockUI.js"></script>
<script type="text/javascript">
$(document).ready(function () {
$('#btnSubmit').click(function () {
$.blockUI({
theme: true,
title: '<img src="images/titulo.png" />',
message: '<center><p><img src="images/spinner.gif" /></p><p><img src="images/mensagem.png" /></p></center>'
});
});
});
</script>

有人可以帮助我吗?提前致谢。

最佳答案

我今天也遇到这个问题,终于找到解决办法了。当触发加载另一个页面的操作时,BlockUI 似乎无法加载图像。但是,如果您在点击事件之前在 JS 中预加载图像,则效果很好。

$(document).ready(function () {

//preload your images here
img1 = new Image();
img1.src = "images/titulo.png";
img2 = new Image();
img2.src = "images/spinner.gif";

$('#btnSubmit').click(function () {
$.blockUI({
theme: true,
title: '<img src="images/titulo.png" />',
message: '<center><p><img src="images/spinner.gif" /></p><p><img src="images/mensagem.png" /></p></center>'
});
});

});

关于javascript - IE8显示图像,Chrome/Firefox使用BlockUI不显示图像,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/20054776/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com