このコードはテキストと 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 ページから画像とテキストをロードできますか?