Jquery UI Tabs 仅重新加载选项卡内容
<div id="example">
<ul>
<li><a href="ahah_1.aspx"><span>Content 1</span></a></li>
<li><a href="ahah_2.aspx"><span>Content 2</span></a></li>
<li><a href="ahah_3.aspx"><span>Content 3</span></a></li>
</ul>
</div>
我在 Ajax 模式下使用 Jquery ui 选项卡。当我的页面 ahaha_1.aspx 回发时,我的主页消失,并且我被重定向到 ahaha_1.aspx。如何让它仅重新加载选项卡而不是整个页面。
<div id="example">
<ul>
<li><a href="ahah_1.aspx"><span>Content 1</span></a></li>
<li><a href="ahah_2.aspx"><span>Content 2</span></a></li>
<li><a href="ahah_3.aspx"><span>Content 3</span></a></li>
</ul>
</div>
I am using Jquery ui tabs in Ajax mode. When my page ahaha_1.aspx postbacks my main page dissapears and I am redirected to ahaha_1.aspx. How do I get it to only reload the tab and not the entire page.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(3)
来自 JQuery ui - 选项卡演示
from JQuery ui - Tabs Demo
要重新加载选项卡,您需要一个按钮或其他东西来触发此命令,然后重新加载当前选定的选项卡。
$("#tabs").tabs("option","selected") 正在抓取当前选定的选项卡。
To reload the tab you would need a button or something to trigger this command which would then reload the currently selected tab.
$("#tabs").tabs("option","selected") is grabbing the currently selected tab.
添加此
Create this input 标签即可。
只需在您的正文代码中
Just add this
Create this input tag
at your body code.