拖动:替换数据

发布于 2024-12-04 15:46:54 字数 1250 浏览 0 评论 0原文

我得到了一个网页,其中包含一些 html 元素,包括文本区域和嵌入式内容可编辑 iframe(rte)。

使用此代码,我设法捕获主页上的拖动手势事件并设置文本/html-数据

jQuery(document).bind('draggesture', function(event){                   
    event.originalEvent.dataTransfer.setData('text/html', 'my_data');
});

现在,当放入主页上的文本区域时,“my_data”会被丢弃。 放入可编辑的 iframe 中也会丢弃“my_data”。

但我在这里遇到了三个我不明白的问题:

1. 将这种处理程序绑定到 iframes 文档是有效的。我将事件数据设置为与上面的代码类似,但它不起作用。当我将其拖动到 iframe 内或主页上的文本区域时,不会插入“my_data”,而是插入原始选定的内容。 我可以做什么来设置“my_data”?

2. 我尝试使用 iframe 和主页中的 drop 事件修改/设置数据:

jQuery(ed.getDoc()).bind('drop', function(event){
  event.originalEvent.dataTransfer.setData('text/html',  'my_data');
});

但是我得到了两个文档(主页和 iframe)上的 javascript 错误:“此文档不允许修改”。 为什么我会收到此错误?有解决方法吗? 看起来 pimvdb 对此有一个解释。

3. 从主页选择

some text


some text

并将其拖入当我使用上面的第一个代码示例设置“my_data”(在 Draggesture 上)时,contenteditable iframe 不会插入任何内容。拖入文本区域即可。 有人知道这里出了什么问题吗?(使用 chrome 不会出现问题!)

编辑:这是一个 jsFiddle 演示,可以解决并理解问题:

http://jsfiddle.net/R2rHn/5/

I got a webpage with some html elements including a textarea and an embedded contenteditable iframe (a rte).

Using this code i manage to catch the draggesture event on the main page and set the text/html-data

jQuery(document).bind('draggesture', function(event){                   
    event.originalEvent.dataTransfer.setData('text/html', 'my_data');
});

Now, when dropping in a textarea on the main page 'my_data' gets dropped.
Dropping in the contenteditable iframe drops 'my_data' too.

But i got three issues here that i do not understand:

1. Binding this kind of handler to the iframes document works. I set the events data analog to the above code, but it does not work. When i drag it inside the iframe or to the textarea on the main page 'my_data' does not get inserted, but the original selected content. What can i do to set 'my_data'?

2. I tried to modify/set the data using the drop event in the iframe and the main page:

jQuery(ed.getDoc()).bind('drop', function(event){
  event.originalEvent.dataTransfer.setData('text/html',  'my_data');
});

But i get a javascript error on both documents (main page and iframe) : "Modifications are not allowed for this document".
Why do i get this error? Is there a workaround for this?
Looks like pimvdb got an explantion for this.

3. When selecting <p>some text</p><hr><p>some text</p> from the main page and dragging this into the contenteditable iframe nothing gets inserted when i set 'my_data' (on Draggesture) using the first code example from above. Dragging into the textarea works. Does anyone know what gets wrong here? (problem does not occur using chrome!)

EDIT: Here is a jsFiddle demo to play around and understand the problem:

http://jsfiddle.net/R2rHn/5/

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

灯下孤影 2024-12-11 15:46:54

您正在使用 draggesturedragstart 可以工作。

其次,在drop上设置dataTransfer数据是没有意义的,因为此时拖动“包”已经到达了。它在掉落后就被破坏了,那你为什么要在那个时候改变它呢?

我清理了你的小提琴,以弄清楚发生了什么,以便能够解决它,这就是结果。它似乎可以在 Chrome 上运行。

http://jsfiddle.net/R2rHn/7/

tinyMCE.init({
   mode : "exact",
   elements : "content",
   skin : "o2k7",
   skin_variant : "silver",

   setup : function(ed) {
     ed.onInit.add(function(ed, evt) {
       var iframe = ed.getDoc();

       jQuery(iframe).bind('dragstart', function(event){
         event.originalEvent
              .dataTransfer
              .setData('text/plain', 'modified_content_from_iframe');
       });
     });
   },

});

jQuery(document).bind('dragstart', function(event){          event.originalEvent
         .dataTransfer
         .setData('text/html',  'my_data_html');

    event.originalEvent
         .dataTransfer
         .setData('text/plain', 'my_data_plain');
});

You are using draggesture but dragstart works.

Second, it does not make sense to set the dataTransfer data on drop, because the drag "package" has already arrived by then. It's being destroyed after the drop, so why would you like to change it at that point?

I cleaned your fiddle to get straight what was happening so as to be able to solve it, and this is the result. It seems to work on Chrome.

http://jsfiddle.net/R2rHn/7/

tinyMCE.init({
   mode : "exact",
   elements : "content",
   skin : "o2k7",
   skin_variant : "silver",

   setup : function(ed) {
     ed.onInit.add(function(ed, evt) {
       var iframe = ed.getDoc();

       jQuery(iframe).bind('dragstart', function(event){
         event.originalEvent
              .dataTransfer
              .setData('text/plain', 'modified_content_from_iframe');
       });
     });
   },

});

jQuery(document).bind('dragstart', function(event){          event.originalEvent
         .dataTransfer
         .setData('text/html',  'my_data_html');

    event.originalEvent
         .dataTransfer
         .setData('text/plain', 'my_data_plain');
});
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文