这是我的代码:
test.html
<html>
<head>
<title>test</title>
<script src="http://ajax.googleapis.com/ajax/libs/jquery/1.8.2/jquery.min.js">
</script>
<script>
$(document).ready(function(){
$(window).bind('hashchange', function(){
$('#result').load('test2.html', function(){
alert('Load was performed.');
});
});
});
</script>
</head>
<body>
<a href="#Test1">Test 1</a>
<a href="#Test2">Test 2</a>
<div id="result"></div>
</body>
</html>
test2.html
<h3>This is content from test2.html</h3>
我想使用 window.hash 来检测要加载的特定页面。例如,如果用户去http://localhost/test.html#test2
.
页面中的主容器(结果)将对 test2.html 执行 Ajax 加载调用以获取内容。我无法让这个简单的代码工作。如果有人能引导我朝着正确的方向前进,我将不胜感激。谢谢。