没有扩展名的 jQuery .load 页面

发布于 2024-10-18 04:45:05 字数 344 浏览 1 评论 0原文

是否可以从没有 php/html 扩展名的页面进行 .get 或 .load? 我的意思是:

我有这个 URL domain.com/page/3 并且我想获取此内容页面显示在其他页面上。

我用

$('#div').load('/page/3');

但是没用。有什么建议吗?谢谢


UPD: 使用加载页面的确切部分可以解决该问题。它与以下内容一起工作:

$('#div').load('/page/3 #container');

Is it possible to .get or .load from a page without php/html extension? I meant the following:

I have this URL domain.com/page/3 and I want to get the contents of this page displayed on some other page.

I use

$('#div').load('/page/3');

But it doesn't work. Any suggestions? Thanks


UPD:
The problem is solved using load of exact portion of the page. It worked with the following:

$('#div').load('/page/3 #container');

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

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

发布评论

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

评论(2

财迷小姐 2024-10-25 04:45:05

试试这个(期望你的文件夹“page”存在,里面有一个名为“3”的文档):

$('#div').load('page/3');

Try this (expecting your folder "page" exists, with a document called "3" inside) :

$('#div').load('page/3');
傾城如夢未必闌珊 2024-10-25 04:45:05

使用加载页面的确切部分可以解决该问题。它适用于以下内容:

$('#div').load('/page/3 #container');

The problem is solved using load of exact portion of the page. It worked with the following:

$('#div').load('/page/3 #container');

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