我真的不知道哈希的概念,但根据我的理解,当用户按下 F5 键时,它可以防止页面重定向到其他页面。
我有这个 jquery 函数:
$('#f1').click(function()
{
alert(window.location.hash);
$("#body").load("sample.php");
});
HTML:
<a href = "#!sample" id = "f1">FUNC 1</a>
<div id = "body">
<!-- OUTPUT HERE -->
</div>
它成功输出了我的 sample.php 的内容,但是当我点击键盘上的刷新按钮或 F5 时,它重定向回父页面。
我希望当我点击刷新时 sample.php 的内容将保留在正文中。