首页  :: 新随笔  :: 联系 :: 订阅 订阅  :: 管理

jQuery UI live绑定 Draggable Droppable

Posted on 2012-03-20 22:40  达奇  阅读(906)  评论(0编辑  收藏  举报
(function ($) {
    $.fn.liveDraggable = function (opts) {
        this.live("mouseover", function () {
            if (!$(this).data("init")) {
                $(this).data("init", true).draggable(opts);
            }
        });
        return $();
    };
} (jQuery));

(function ($) {
    $.fn.liveDroppable = function (opts) {
        this.live("mouseover", function () {
            if (!$(this).data("init")) {
                $(this).data("init", true).droppable(opts);
            }
        });
        return $();
    };
} (jQuery));