1

我想更改事件拖放,以单击我的对象的事件。我试试这段代码

 $("a").draggable({
    start: function (event, ui) {
        $(this).trigger("click");
    }
});

但不工作:(

更新:

我试试这段代码:

document.ondragstart = function () {
return false;
};

document.onmouseup = function (a, b) {
$(this).trigger("click");
};

但是触发点击仍然不起作用

4

2 回答 2

1

试试这个修改:

$("a").draggable({
    start: function (event, ui) {
        $(--your-button-element-here-).click();
    }
});
于 2013-06-21T10:55:45.930 回答
0

我找到了这样的解决方案

var url = null;
        $("a").mousedown(function () {
            url = $(this).attr("href");
            $(window).mousemove(function () {
                $(window).unbind("mousemove");
            });
        });
        $(window).mouseup(function () {
            $(window).unbind("mousemove");
            if (url != null) {
                location.href = url;
            }
        });
于 2013-06-21T11:54:55.353 回答