gpt4 book ai didi

php - 使用 JQuery 加载函数时,Internet Explorer 中不显示背景

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

我使用以下 jquery 代码加载页面...

$(function() {
$('#stats').load('statsto.php');

var visibleInterval = 60000;
var invisibleInterval = 120000;

$(function() {
setTimer();
$(document).bind('visibilitychange'), function() {
clearTimeout(timer);
setTimer();
};
});

function displayStats() {
$('#stats').load('statsto.php');
$.ajaxSetup({ cache: false });
}

function setTimer() {
timer = setInterval(displayStats, (document.hidden) ? invisibleInterval : visibleInterval);
}

});

这是来自 statsto.php 的样式...

body {
font-family: Verdana;
font-size: 7px;
color: #FFFFFF;
background-color: #000000;
background-image: url("grad.png");
}

但是背景图像在 Internet Explorer 中不显示。我试过使用 background: black url("grad.png"); 但这也不起作用。我也尝试过将样式包含在与 JQuery 代码相同的页面中,但仍然没有成功。

最佳答案

嗯.. 您的问题可能与 .load() 函数本身有关(在 Internet Explorer 中)。我似乎记得不久前遇到过一个问题......

试试这个

$.get('statso.php', function() {
$('#stats').html();
});

关于php - 使用 JQuery 加载函数时,Internet Explorer 中不显示背景,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/7474737/

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