bootstrap动态添加面包屑(breadcrumb)及其响应事件的方法
程序员文章站
2022-06-20 10:35:37
本文实例讲述了bootstrap动态添加面包屑(breadcrumb)及其响应事件的方法。分享给大家供大家参考,具体如下:
bootstrap官网中,只介绍了breadc...
本文实例讲述了bootstrap动态添加面包屑(breadcrumb)及其响应事件的方法。分享给大家供大家参考,具体如下:
bootstrap官网中,只介绍了breadcrumb的布局(如下图),未介绍使用方法,如何动态增加面包屑title及点击事件的响应。
本人在使用过程中探索出以下的方式。
首先,在html文件里定义div
<div> <ul class="breadcrumb " style="margin-bottom:0px;visibility:hidden;" data-dojo-attach-point="breadcrumb_1"> <li ><a href="#" rel="external nofollow" style="color:#303f9f;font-size:1.1em;" data-dojo-attach-point="item_1"></a></li> <li class="active" style="color:#757575;font-size:1.1em;" data-dojo-attach-point="item_2"></li> </ul> </div>
然后在js文件中传输数据,并定义点击响应事件
var breadcrumbid1=null; var breadcrumbid2=null; topic.subscribe("opentabwithbreadcrumb",function(data){ breadcrumbid1=data.id1; breadcrumbid2=data.id2; this.item_1.innerhtml =" title1" ;////传入所需数据 this.item_2.innerhtml = "title2"; }); on(this.item_1,'click',lang.hitch(this,function(){ var id1 = breadcrumbid1; var id2 = breadcrumbid2; topic.publish("switchtonewtab",{tabid1:id1,tabid2:id2,data:{....}});///把需要的数据传入切换的tab或者窗口 }));
注:本人所做的项目是基于dojo的框架,此处的topic是dojo的数据发布订阅方式,data-dojo-attach-point这一属性为dojo的属性,相关知识请参照dojo 官网,在此不进行详述。
ps:关于bootstrap布局,这里再为大家推荐一款本站的在线可视化布局工具供大家参考使用:
在线bootstrap可视化布局编辑工具:
希望本文所述对大家基于bootstrap的程序设计有所帮助。