gpt4 book ai didi

javascript - jQuery Ajax 加载不工作

转载 作者:行者123 更新时间:2023-11-30 05:54:19 24 4
gpt4 key购买 nike

这是我的代码:

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 加载调用以获取内容。我无法设法让这个简单的代码工作。如果有人能指导我正确的方向,我将不胜感激。谢谢。

最佳答案

尝试以下操作:

window.onhashchange = function () {
$('#result').load('test2.html', function(){
alert('Load was performed.');
});
};

关于javascript - jQuery Ajax 加载不工作,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/12869668/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com