我试图使引导twitter对话模式draggable这个jquery插件:
http://threedubmedia.com/code/event/drag#demos
但它不工作。
var $div = $('html'); console.debug($('.drag')); $('#modalTest') .drag("start",function( ev,dd ){ dd.limit = $div.offset(); dd.limit.bottom = dd.limit.top + $div.outerHeight() - $( this ).outerHeight(); dd.limit.right = dd.limit.left + $div.outerWidth() - $( this ).outerWidth(); }) .drag(function( ev,dd ){ $( this ).css({ top: Math.min( dd.limit.bottom,Math.max( dd.limit.top,dd.offsetY ) ),left: Math.min( dd.limit.right,Math.max( dd.limit.left,dd.offsetX ) ) }); });
你有想法我该怎么办?
解决方法
$("#myModal").draggable({ handle: ".modal-header" });
它为我工作。我从there。如果你给我谢谢,请给70%到Andres Ilich