jQuery拖动; drop在html中工作

时间:2010-08-29 06:36:56

标签: jquery drag-and-drop

jQuery是否拖累& drop功能也适用于HTML?我使用了按钮标签并使用了相同的拖动和放大器。删除jQuery函数以使其工作。但不幸的是它不起作用?是否可以称之为“拖拽”。删除HTML按钮的功能?如果你能帮助我,我会很高兴的。这是我用过的代码。

alert("inside script");

$().ready(function() {
    alert("inside function");
    $("#submitme").draggable({revert: "invalid"});
    $("#button2").draggable({revert: "invalid"});
    $("#textarea1").droppable({
        accept: function(d)  {
            alert("droppable");
            if((d.attr("id")=="button2")){
                return true;
            }
        }
    });

    alert("after script");
});

0 个答案:

没有答案