没有扩展名的 jQuery .load 页面
是否可以从没有 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
试试这个(期望你的文件夹“page”存在,里面有一个名为“3”的文档):
Try this (expecting your folder "page" exists, with a document called "3" inside) :
使用加载页面的确切部分可以解决该问题。它适用于以下内容:
$('#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');