Has Chrome improperly implemented the dataTransfer object?

大兔子大兔子 提交于 2019-12-03 17:11:39

问题


When I do this in dragstart event:

e.dataTransfer.setData('text/plain', 'text');
e.dataTransfer.setData('text/html', 'html');
e.dataTransfer.setData('application/x-bookmark', 'bookmark');

and this in drop event:

for (var i = 0; i < e.dataTransfer.types.length; i++) {
   var type = e.dataTransfer.types[i];
   console.log(type + ":" + e.dataTransfer.getData(type));
}

I was supposed to have:

text/plain:text
text/html:html
application/x-bookmark:bookmark

as what I got in FF, but actually I got:

Text:text
text/plain:text

in Chrome. Where are those data gone? Does this mean chrome did not implement the dataTransfer object properly? And what can I do about this?

I ran this in Chrome 4.0.266.0


回答1:


Yes it is a bug in Chrome. See issues 31037 and issue 30240 in the chromium issue tracker (chromium is the open source version of google chrome). I see no other solution than waiting for the bug to be fixed. You can help them fixing it by providing a simple test case.



来源:https://stackoverflow.com/questions/1895923/has-chrome-improperly-implemented-the-datatransfer-object

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