资 源 简 介
gooflow系统下载包 就是为了混分用 //选定一条转换线后出现的浮动操作栏,有改变线的样式和删除线等按钮。 this.$lineOper=$("");//选定线时显示的操作框 this.$workArea.parent().append(this.$lineOper); this.$lineOper.on("click",{inthis:this},function(e){if(!e)e=window.event;if(e.target.tagName!="I") return;var This=e.data.inthis;var id=$(this).data("tid");switch($(e.target).attr("class")){case "b_x": This.delLine(id);this.style.display="none";break;case "b_l1":This.setLineType(id,"lr");break;case "b_l2":This.setLineType(id,"tb");break;case "b_l3":This.setLineType(id,"sl");break;} });