IE7拖放到TextArea的链接

时间:2009-08-14 16:36:17

标签: asp.net internet-explorer

为什么在IE7中禁止我将URL /图像链接等拖到TextArea中?

这不起作用:

在IE中转到工具>互联网选项>安全

从区域列表中选择Internet,然后单击自定义级别...按钮。

向下滚动到Miscellaneous部分,然后查找拖放或复制并粘贴文件。

确保选中“启用”。

单击“确定”,“应用”,“确定”。

*注意:我可以拖动到标签页。

接受回答的资源网址: http://msdn.microsoft.com/en-us/library/ms533743%28VS.85%29.aspx

1 个答案:

答案 0 :(得分:1)

将以下JavaScript代码添加到您的页面中可以将链接拖到IE中的textarea。

/* FIX IE of not allowing dropping links into textarea. */
document.ondragstart = function () {
    window.event.dataTransfer.effectAllowed = "copyLink";
};