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.
draggable複数のハンドルを持つ要素を持つことは可能ですか?
draggable
毎回異なるハンドル パラメータを使用して 2 回初期化していますが、機能しません。最初のものだけが機能します。
「ハンドル」パラメーターは 1 回だけ渡す必要があり、セレクターまたは要素 (/s) のいずれかにすることができます。
したがって、複数のハンドルで機能させるには:
$(elem).draggable({ handle: '#handle1, #handle2', });
詳細情報/ソース: http://docs.jquery.com/UI/Draggables/draggable
もちろん。これらのハンドラーを選択可能にするだけです。
例えば:
$(element).Draggable({handle:'.handler'});