jQuery 选项卡 - 添加可重用的下一个/上一个按钮
我希望扩展 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
编写一个 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.