Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
こんにちは、jquery ドラッグ可能なプラグインを使用して、デフォルトで margin-left および margin-top プロパティを更新できるかどうかを知りたいのですが、ドラッグ イベントで css の left および top プロパティを更新します。助けてください
できますよ
$( "#box" ).draggable({ stop: function( event, ui ) { $( "#box" ).css('margin-top',$("#box").offset().top).css('top',0); $( "#box" ).css('margin-left',$("#box").offset().left).css('left',0); } });
http://jsfiddle.net/CnDfF/3/