How to drag textarea and inputs using jquery

前端 未结 1 842
清酒与你
清酒与你 2021-01-28 10:32

I am using jQuery UI draggable to drag elements but it does not seem to work on textarea and inputs as they are focused whenever I click on them. Here is a JSbin De

1条回答
  •  北荒
    北荒 (楼主)
    2021-01-28 10:48

    Looks like I have found solution to this problem after some googling. Posting it here to help others. Two steps needed:

    1. jQuery Draggable disables draggable on input,textarea,select,button elements.
    2. To override this, in draggable method, pass this { cancel: '' }

    Here is working JSBin Demo

    HTML

    
    

    I am a DIV. Try to move me

    JS

    $('.movable').draggable({
      cancel: ''
    });
    

    0 讨论(0)
提交回复
热议问题