drag: function(e) {
var left = parseInt($('.jOrgChart').css('left'));
if(left > 0)
{
$('.jOrgChart').css('left', '0'); //put the element to 0
return false; // here I stop the dragging, but I want to allow it drag to the other direction
}
}
我希望在left
超过0之后停止拖动,但如果我返回false,拖动将停止(用户卡住),但我想允许用户拖动此元素但是其他方向,这可能吗?