jquery 动态加载选项卡,其中包含脚本

发布于 2024-12-10 02:56:09 字数 497 浏览 0 评论 0原文

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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

任谁 2024-12-17 02:56:09

创建选项卡时,您需要像这样设置 cache:true

$("#tabsWrap").tabs({
   ...
   cache: true 
   ...
});

When creating your tabs, you need to set cache:true like this:

$("#tabsWrap").tabs({
   ...
   cache: true 
   ...
});
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文