我希望动态加载我的选项卡(仅在单击时)
可能的重复:
Jquery 选项卡 - 仅在单击时加载内容
嗨,
我是个比较新的人jquery 和 web 开发。 我正在使用 jquery 选项卡来创建选项卡。 这是代码
和 javascript 是
每个页面在单击选项卡之前加载,但我希望它们动态加载
所以你能帮我摆脱这个混乱吗:)
Possible Duplicate:
Jquery Tabs- Load Contents only when clicked
Hi,
I am relatively new to jquery and web development.
I am using jquery tabs to create tabs.
here is the code
<div id="tabs-1">
<%@ include file="page1.jsp"%>
</div>
<div id="tabs-2">
<%@ include file="Page2.jsp"%>
</div>
<div id="tabs-3">
<%@ include file="Page3.jsp"%>
</div>
</div>
and javascript is
each and every page is loading before clicking the tab but i want them to load dynamically
So can you please help me get out of this mess :)
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
查看 Jquery ui 选项,
它能够通过 ajax 加载内容(我相信您只需在 href 中放入一个 url 而不是只是 #
,它就会从该 url 加载内容
Look in the Jquery ui options,
it has the ability to load content via ajax (i believe you simply put a url in the href instead of just #
and it will load the content from the url