私はこのコードを持っています:
function loadPage(page, link) {
if ($('div#content').attr('current') != page) {
$('div#content').load(page, '', function (responseText, textStatus, XMLHttpRequest) {
if (textStatus == 'error') {
$('div#content').html("<?php include 'error/404.php' ?>");
};
});
var html = $('div#content').html();
if (html != "<?php include 'error/404.php' ?>") {
$('div#content').hide().fadeIn('slow').attr('current', page);
};
$('div#header div#bottom div#nav ul#main li a').removeClass('active');
$(link).addClass('active');
};
};
divのhtml(div#contentに配置されたばかりの「error / 404.php」のHTML)とソースのhtml(error / 404.php)を比較すると、なぜそうではないのかわかりません。同じで、本当の道をたどりません。
助けてくれる人はいますか?