jQuery 工具:只有一个 AJAX 选项卡
我想使用 jQuery 工具选项卡,并拥有一组常规内联内容选项卡,和一个 AJAX 选项卡。但我只看到内联内容或 ajax 内容的示例。我可以混合它们吗?
I would like to use jQuery Tools Tabs, and have a set of regular inline content tabs, and one AJAX tab. But I only see samples of either inline content, OR ajax content. Can I mix them?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
AFAIK,要么全是 AJAX,要么没有。但是,您可以自己轻松地对单个窗格进行 AJAX。您需要做的就是添加一个点击处理程序(最好使用
.one()
以便在第一次运行后将其自身删除)到选项卡;然后,此点击处理程序可以使用.load()
加载窗格的内容或无论您想要什么其他 AJAX 含义。例如,HTML 会是这样的:
JavaScript 会是这样的:
这是一个简单的实例: http://jsfiddle.net/ambiguously/stxha/
AFAIK, it is either all AJAX or none. However, you can easily AJAX a single pane yourself. All you need to do is add a click handler (preferably using
.one()
so that it removes itself after it is run for the first time) to the tab; this click handler can then load the pane's content with.load()
or whatever other AJAX means you want.For example, the HTML would be something like this:
and the JavaScript would be something like this:
And here's a simple live example: http://jsfiddle.net/ambiguous/stxha/