# bootstrap-tabx **Repository Path**: hanwei59/bootstrap-tabx ## Basic Information - **Project Name**: bootstrap-tabx - **Description**: Bootstrap标签页扩展 - **Primary Language**: JavaScript - **License**: Not specified - **Default Branch**: master - **Homepage**: None - **GVP Project**: No ## Statistics - **Stars**: 0 - **Forks**: 0 - **Created**: 2013-11-06 - **Last Updated**: 2020-12-19 ## Categories & Tags **Categories**: Uncategorized **Tags**: None ## README bootstrap-tabx ============== bootstrap-tabx为bootstrap-tab添加了新增标签页和关闭标签页的功能。 [示例Demo](http://hanwei59.github.io/bootstrap-tabx/) http://hanwei59.github.io/bootstrap-tabx/ ##用法示例 ###静态Html
这是一个静态标签页。
###添加事件 $(function(){ $(".nav-tabs").tabx(); $('.nav-list a').click(function (e) { e.preventDefault(); $(".nav-tabs").tabx("add",{ id : $(this).attr("href").substr(1), title: $(this).text(), href: $(this).attr("link") }); }); });