我目前在尝试通过 jQuery 根据标题加载页面时遇到问题!最初,当我通过 .click 加载页面时,我将页眉更改为#/Pathname
. 现在我的问题来了,而不是个人必须不断地转到主页然后单击一个按钮,pathname
我希望他们能够直接进入www.example.com/main.php#/Pathname
并让 jQuery 能够加载页面......那可能吗?我试过这段代码,但没有运气:
if (document.location.pathname == "main.php#/Home") {
$('#content').load('home.php', function( response, status, xhr ) {
if ( status == "error" ) {
var msg = "Sorry but there was an error: ";
$( "#error" ).html( msg + xhr.status + " " + xhr.statusText );
}
});
}
忽略错误脚本,它只是出于我自己的目的!