在jquery UI拖拽效果中,如何找到被拖拽的拖拽效果?
$('#test').droppable({
drop: function (e,ui) {
//$(this) means the drop-container
//How can I use the "ui" parameter find the being draged one?
}
}
}
我需要以下方面的帮助:
1.)如何将函数$('div.appriseOuter').draggable();放在所有‘apprise`函数中?我需要在每个赋值函数上放上
2.)当你点击“点击我”,它应该会弹出对话框“拖拽我#1”-然后当你按回车键,它会进入对话框“拖拽我#2”,然后当你再次点击回车,对话框“拖拽我#3”没有出现。但是当您通常单击not ENTER时,它会进入"Drag me #3“对话框。
My JsFiddle is
当拖拽的<li>离开可丢弃的#div1时,如何强制拖拽的<li>丢弃?
$("li").draggable();
$("#div1").droppable({
tolerance:'pointer',
drop:function (event,ui) {
alert("dropped")
},
out:function (event,ui){
//if out then drop the li
}
}
我正在尝试创建一个映射,它将在行尾添加一个拖拽的文本,但如果行尾的字符不是空格,则在它前面附加一个空格。
Base string: The quick brown fox
^no space, just fox$
Desired after pasting: The quick brown fox jumps over the lazy dog
Base string: The quick brown fox
^additional space, fox $
Des