继承人我正在努力做的事情。
这是我用来检测所选文字的代码。
if (!window.x) {
x = {};
}
x.Selector = {};
x.Selector.getSelected = function() {
var t = '';
if (window.getSelection) {
t = window.getSelection();
} else if (document.getSelection) {
t = document.getSelection();
} else if (document.selection) {
t = document.selection.createRange().text;
}
return t;
}
$(function() {
$(document).bind("mouseup", function() {
var mytext = x.Selector.getSelected();
alert(mytext);
});
一切正常,直到这里,我试着这样做。
$(function() {
$(document).bind("mouseup", function() {
var mytext = x.Selector.getSelected();
alert(mytext);
var item=$(mytext);
$(item).draggable({
start:function(event,ui){$( "#draggable" ).draggable( "option", "revert", true );},
stop:function(event,ui){$( "#draggable" ).draggable( "option", "revert", true );}
});
$("#droppable").droppable({
accept: item ,
drop: function() { alert($('#draggable').text()); }
});
});
如何将文本转换为可拖动文本,请帮忙,欢迎任何新方法。
答案 0 :(得分:0)
有趣..
var item=$(mytext);
您无法选择文本作为DOM元素。您应该将其添加到新创建的元素,例如<p>
$("<p>"+mytext+</p>").appendTo("body").dragable({...}).