使用 jQuery 加载外部 .html 文件
我正在尝试创建一个带有选项卡式浏览的网站,并按照教程进行操作。但问题是我当前使用的代码没有按预期工作。
HTML 代码: http://pastebin.com/CG146NS3
CSS 代码:http://pastebin.com/4VCuAwJm
- JavaScript:http://pastebin.com/sZhhQs6v< /a>
我遵循的教程: http://net.tutsplus.com/tutorials/javascript-ajax/how-to-load-in-and-animate-content-with-jquery/
问题: 当我单击其中一个选项卡时,#content 会随着幻灯片消失,并且 .load 会加载内容,但它不会将内容放入 #content 中。
I'm trying to create a website with tabbed browsing and have followed a tutorial to make this. But the problem is that the code I'm currently is using doesent work as expected.
HTML-code:
http://pastebin.com/CG146NS3CSS-code: http://pastebin.com/4VCuAwJm
- JavaScript: http://pastebin.com/sZhhQs6v
The tutorial I followed: http://net.tutsplus.com/tutorials/javascript-ajax/how-to-load-in-and-animate-content-with-jquery/
The problem:
When I click one of the tabs the #content goes away with a slideUp and .load loads the content but it doesent place the content in #content.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
#ids
。记住当你这样做时:
您实际上是将页面片段
#content
加载到页面中的#content
中。所以你最终会得到这样的结果:#ids
.Remember when you do:
you are actually loading a page fragment
#content
into#content
in your page. So you end up with this:好的,根据您的评论。只需确保您的随机 html 文件中实际上有一个 ID 为
#content
的 DIv。Okay, based on your comment..Just make sure that you actually have a DIv with ID
#content
in your random html files.