使用jquery刷新div选项卡onclick?
我正在使用选项卡,但想知道是否可以在单击时“刷新”选项卡内容?
I'm using tabs, but wondering if it's possible to "refresh" tab content onclick?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(4)
下面是我在 asp.net mvc 中使用 ajax 的方法:
每个 getTabnnnData 方法都运行它自己的小 ajax 例程,并且填充了 div。这是非常有效的,因为你也可以变得聪明一点,只在目标 div 仍然为空等情况下运行该方法。
希望这能给事情带来另一种倾向。
吉姆
here's how i do it with ajax in asp.net mvc:
each of the getTabnnnData methods runs it's own little ajax routine and the div is populated. This is quite effective as you can also get a little clever and only run the method if the target div is still empty etc..
hope that gives another slant on things.
jim
是的,这是可能的,但你不需要 onClick 事件,我认为
使用这个
注意:不是给出选项卡分区的 id,而是给出页面链接
因此,每次您单击选项卡时,它都会更新它,
这会优雅地降级 - 链接(例如内容)在禁用 JavaScript 的情况下仍然可以访问。
Yes it is possible, but you dont need onClick event for this I think
use this
Notice that: instead of giving the id of the tab's division, a page link given
so every time you click on the tabs, it updates it
this degrades gracefully - the links, e.g. the content, will still be accessible with JavaScript disabled.
请理解,这很可能不是执行此操作的最佳方法。但这就是他所要求的。
Please understand that it is very likely not the best way to do this. But this is what he asked for.
简单的:
http://docs.jquery.com/UI/Tabs
;)
Simple:
http://docs.jquery.com/UI/Tabs
;)