jQuery 选项卡 - 添加可重用的下一个/上一个按钮

发布于 2024-10-15 15:41:32 字数 121 浏览 2 评论 0原文

我希望扩展 jquery 选项卡以添加下一个和上一个按钮 - 我已经使用 show 事件完成了这一点。问题在于,它为需要选项卡和这些按钮的每个页面添加了一大块代码到该事件中。我如何使其成为可重复使用的组件?

大卫

Im looking to extend the jquery tabs to add next and previous buttons - which i have done using the show event. The problem is that its a big chunk of code added to that event for each page that needs tabs and these buttons. How i go about making it a reusable component?

David

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

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

发布评论

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

评论(1

淡写薰衣草的香 2024-10-22 15:41:32

编写一个 jquery 插件来按照约定连接选项卡。这是一个教程: http://docs.jquery.com/Plugins/Authoring

装饰您的选项卡列表类似的东西,然后让你的插件选择带有“scrollable”类的 ul。把你所有的逻辑写在那里。您不需要为每个页面显式调用任何函数。

Write a jquery plugin to wire your tabs up by convention. Here's a tutorial: http://docs.jquery.com/Plugins/Authoring

Decorate your tab list with something like , then have your plugin pick up on ul's with class "scrollable". Write all your logic in there. You shouldn't need to call any function explicitly for each page.

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