0

此代码正在加载文本和 css,但不是来自其他 PHP 页面的单个图像(使用 xampp 测试)

$("ul#nav a").click(function() {
    var page = $(this).attr("href");
    $("#decor").animate({opacity: 0.1,}, 1000 );
    $("#block").hide(700).animate(
        {width: "700px",
        height: "400px",
        opacity: 0.9,},
        200,
        function(){
            $(this).fadeIn(700).load("content/"+ page +".php"); 
        });
    return false;
});

load() 可以从另一个 php 页面加载图像和文本吗?

4

1 回答 1

0

是的load(),jquery 中的函数可以加载图像,你可能需要做这样的事情。

var name='FULL_PATH?dt=' + (+new Date());
$('<img src="'+name+'">').load(function() {
       $('#ID').html('');
       $(this).width('40').height('40').appendTo('#ID');
});

这将强制浏览器加载新图像,破坏缓存。和欢呼:)

于 2016-04-21T06:24:43.777 回答