我有一个页面通过ajax从其他文件获取内容,它运行完美,但是当通过地址栏导航时,它不起作用,因为事件仅在点击时触发。我搜索过,但我找不到符合我需要的解决方案。我给了我的代码。有人帮忙。
<a href="#profile" onclick="profile()">Profile</a>
<div id="home-content" class="container-fluid"></div>
<script>
function profile(){
$.ajax({
type: "POST",
url: "functions.php",
data: {action:profile},
success: function(response)
{
$('#home-content').html(response);
}
});
}
</script>
我想要的只是当我输入像home / #profile这样的地址时,必须加载个人资料页面并且它也应该是可导航的,并且有“个人资料”页面的历史记录条目
答案 0 :(得分:0)
请使用此功能
<body onload="profile()">
并在Onclick功能中删除