How to drag textarea and inputs using jquery

别等时光非礼了梦想. 提交于 2019-12-31 06:37:05

问题


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 Demo of the problem.

HTML

<textarea class="movable" placeholder="I am textarea. Try to move me"></textarea>
<h2></h2>
<div class="movable">I am a DIV. Try to move me</div>

JS

$('.movable').draggable();

I think I am missing some parameter in draggable method which can do this for me.


回答1:


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

<textarea class="movable" placeholder="I am textarea. Try to move me"></textarea>
<h2></h2>
<div class="movable">I am a DIV. Try to move me</div>

JS

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


来源:https://stackoverflow.com/questions/20967688/how-to-drag-textarea-and-inputs-using-jquery

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!