我想一个元素上显示tootip被拖动时,它藏起来,当元素被删除/回复。
我使用qtip2工具提示
我的代码:
$(".noDrop").qtip({
content: "You cannot drop this item",
show: "mousedown",
position: {
target: 'mouse',
viewport: $(window) // Keep it on-screen at all times if possible
},
hide: {
fixed: true, // Helps to prevent the tooltip from hiding ocassionally when tracking!
event: 'mouseup'
}
});
这里是小提琴: http://jsfiddle.net/e6dJq/
我可以看到提示被点击的元素时,但随着拖动开始,则立即隐藏。 由于克隆创建并在元素失去焦点。
我不能保持提示可见直到鼠标点击被释放。 请帮忙。