jQuery Tabs 集成了多个选项
我是一个十足的 JavaScript 菜鸟。我现在正在使用这个:
$(function() {
$("#tabs").tabs({
ajaxOptions: {
error: function(xhr, status, index, anchor) {
$(anchor.hash).html(
"Couldn't load this tab. We'll try to fix this as soon as possible.");
}
}
});
});
有人可以告诉我如何添加这个选项吗:
spinner: 'Loading...'
I'm a complete JavaScript noob. I am using this right now:
$(function() {
$("#tabs").tabs({
ajaxOptions: {
error: function(xhr, status, index, anchor) {
$(anchor.hash).html(
"Couldn't load this tab. We'll try to fix this as soon as possible.");
}
}
});
});
Can someone tell me how to also add this option to it:
spinner: 'Loading...'
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您必须用
包装每个选项卡
并使用如下脚本:
要测试它,您应该进行一个有一定延迟的 ajax 调用。我调用了一个 MVC 操作,使线程休眠 2 秒。
You have to wrap every single tab with
<span>
and use the script like this:
to test it you should make an ajax call with some delay. I've called an MVC action putting the thread in sleep for 2 seconds.