我試圖讓jQuery的一個插件draggabble和它看起來像:jQuery的鼠標在DIV位置
(function($){
$.fn.drag = function(){
var element = this;
$(element).mousedown(function(){
$(window).bind("mousemove",function(e){
$(element).css({"position" : "absolute"});
$(window).css({"-webkit-user-select": "none"});
var pos = $(element).position();
$(element).css({"left" : e.pageX+"px"});
});
});
};
})(jQuery);
但是當鼠標移動()發生在div位置,光標在其左側頂部角。它的工作原理,但只能從div的左上角。所以我的問題是如何編碼CSS,所以當我按下鼠標的按鈕,並開始移動光標在屏幕上,拖動只發生在被採取的立場。 jQuery UI做到了這一點,但我無法在他們的代碼中找到它。希望你明白這一點。提前致謝!
IT WORKS !!!!謝啦!我花了2天的時間才弄明白這一點。謝謝! – 2011-03-26 17:23:11