jquery 动态加载选项卡,其中包含脚本
JQuery UI 让我们动态加载选项卡:
http://jqueryui.com/demos/tabs/#ajax< /a>
我的问题是:如果动态加载的选项卡需要脚本,我需要如何编写它们?
我应该再次使用 $(document).ready 方法吗?像这样:
Tab1.html
<script>
$(document).ready(function () {
alert("hello");
});
</script>
<p>Tab Content</p>
----------------- tab1.html 的结尾 -----------------
在这个例子中警报每次显示选项卡时都会显示。
JQuery UI let us have tabs loaded dynamically:
http://jqueryui.com/demos/tabs/#ajax
My question is: if the dynamically loaded tab needs scripts, how do I need to write them?
Should I use a $(document).ready method again? like that:
Tab1.html
<script>
$(document).ready(function () {
alert("hello");
});
</script>
<p>Tab Content</p>
----------------- end of tab1.html -----------------
In this example the alert shows each time the tab is displayed.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
创建选项卡时,您需要像这样设置
cache:true
:When creating your tabs, you need to set
cache:true
like this: