如何使用 jquery 将外部内容加载到 div(想想嵌入式灯箱)
使用 Thickbox 很棒,它允许我将外部站点加载到 Thickbox 中,并且它们保留其功能、外观等。我知道如何使用 jquery 将简单内容加载到 div 中,但我不知道如何将外部内容加载到 div 中一个页面(最好通过 onload 事件),并让该 div 充当 Thickbox 的角色,并保留功能和外观,而无需弹出 Thickbox 窗口。
所有站点都位于不同的子目录中,但具有相同的父目录。
我希望我解释得足够好。
我使用的是jquery 1.3.1。
Using Thickbox is great it allows me to load external sites into the thickbox and they retain their functionality, appearance, etc. I know how to load simple content into a div with jquery but I am stuck on how to load external content to a div in a page (preferably via onload event) and have that div act like Thickbox and retain the functionality and appearance without the popup thickbox window.
All of the sites are in different child directories but have the same parent.
I hope I explained it well enough.
I am using jquery 1.3.1.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(3)
使用 jQuery 加载函数非常棒。
一个简单的代码示例是
$('#result').load('simple/test.html');
其中#result
是您将在其中加载外部的 div file 和 simple/test.html 是要加载的 html 页面路径。有关更多信息,请访问 http://api.jquery.com/load/ 并按照说明进行操作。
Using jQuery load function is great.
A simple example of code is
$('#result').load('simple/test.html');
where#result
is the div where you will load external file and simple/test.html is the html page path to load.For more info just go to http://api.jquery.com/load/ and follow the instructions.
就我个人而言,我只会选择 iFrame,根据您的描述,我认为它会提供相同的功能。
Personally I'd just go for an iFrame, which from your description I think would provide the same functionality.
Thickbox 是(通常)一个 iframe .. 如果内容来自国外网站(您无法控制的网站),iframe 几乎是您唯一的解决方案。
Thickbox is (usually) an iframe .. iframe is pretty much your only solution for this if the content is from foreign websites (sites you dont control) ..