if (this.classList.contains('mui-draggable')) {
this.wrapper.addEventListener($.EVENT_START, this); //临时处理
this.wrapper.addEventListener('drag', this);
this.wrapper.addEventListener('dragend', this);
}
这个是什么目的呢
4 个回复
云商大本营 (作者) - fshjie
var segmentedControl = this.wrapper.querySelector('.mui-segmented-control');
if (segmentedControl) { //靠,这个bug排查了一下午,阻止hash跳转,一旦hash跳转会导致可拖拽选项卡的tab不见
mui(segmentedControl)[detach ? 'off' : 'on']('click', 'a', $.preventDefault);
}
云商大本营 (作者) - fshjie
感觉像在玩
JBoss
a失效的问题怎么解决呢?
m***@vip.qq.com - 雷霆先锋
把this.wrapper.addEventListener($.EVENT_START, this);
屏蔽掉