如何单击加载 html 页面的链接,然后使用 ajax(不单击任何内容)加载外部 html 页面?

发布于 2024-10-14 22:49:01 字数 449 浏览 1 评论 0原文

我有 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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

情绪 2024-10-21 22:49:01

加载 page2 时,window.location.search == "?istoselides" 是否返回 true?

Does window.location.search == "?istoselides" return true, when page2 is loaded ?

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文