jQuery可以在计算机和触摸屏上拖动

时间:2014-08-01 10:49:25

标签: javascript android jquery ios

我有下面的脚本,它可以满足我正在做的事情的需要,是否有任何方法可以让我使用这个脚本,以便它可以在使用鼠标和aa的机器上使用触摸屏平板电脑或ipads / iphone或手机,任何想法如何实现。

 $(function () {

    $(".ui-widget-content").draggable({containment: "#content1" });

    $('.ui-widget-header').each(function (i, ele) {

        // Gets the accepted from the HTML property "data-accept"
        var accept = $(this).data('accept');

        // This is just to show what the item accepts. you can remove it.
        $(this).find('p').text('accepts: ' + accept);

        // Init the jQuery UI droppable()
        $(this).droppable({
            accept: accept,
            drop: function (event, ui) {
                $(this)
                    .removeClass("ui-widget-header")
                    .addClass("correct")
            },
            out: function (event, ui) {
                $(this).removeClass("correct").addClass("ui-widget-header")

            }
        });
    });
});

0 个答案:

没有答案