我正在申请一个应用程序 - *我们需要通过触摸拖动元素.-我已完成该事件。 *之后我们必须拖动并触摸其他div类元素才能打开超链接?
head.js("js/jquery.min.js","js/ui.js","js/touch.js", function (){
$(".box_hand").draggable({revert:true});
});
答案 0 :(得分:0)
好的,我看到你正在加载元素到head部分,一旦加载,你就可以使元素可拖动。例如,为了做一些事情:
//supposing you heve a div#droppable in your html
$( "#droppable" ).droppable({
drop: function( event, ui ) {
//open a link:
document.location.href="deep_space.html";
}
});