如何单击加载 html 页面的链接,然后使用 ajax(不单击任何内容)加载外部 html 页面?
我有 page1.html 和 page2.html 的链接,当加载 page2.html 时,我想用 AJAX 加载 page3.html 的内容。有人可以为我提供解决方案吗?我已经尝试过这个,但它不起作用。谢谢:)
这是代码
$(document).ready(function () {
if (window.location.search == "?istoselides") {
$('#loading_content').load('what-we-do/istoselides.html').fadeIn(1000);
}
if (window.location.search == "?video") {
$('#loading_content').load('what-we-do/etairika_video.html').fadeIn(1000);
}
});
I have page1.html with a link to page2.html and when page2.html is loading i want to load inside it with AJAX the content of page3.html. Can someone provide me with a solution? I have tried this but it doesn't work. Thanks :)
This is the code
$(document).ready(function () {
if (window.location.search == "?istoselides") {
$('#loading_content').load('what-we-do/istoselides.html').fadeIn(1000);
}
if (window.location.search == "?video") {
$('#loading_content').load('what-we-do/etairika_video.html').fadeIn(1000);
}
});
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
加载 page2 时,
window.location.search == "?istoselides"
是否返回 true?Does
window.location.search == "?istoselides"
return true, when page2 is loaded ?