如何阻止 Internet Explorer 打开拖动的文件?

发布于 2024-10-19 15:12:49 字数 116 浏览 1 评论 0原文

我有一个运行我的应用程序的 JSP 页面。但是,当我将文件从 Internet Explorer 外部拖到我的应用程序中时,Internet Explorer 将打开该文件...:(

如何避免这种情况?

I have a JSP page which runs my application. But, when I drag a file from outside Internet Explorer into my application, Internet Explorer opens the file... :(

How can I avoid this?

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

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

发布评论

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

评论(1

愁以何悠 2024-10-26 15:12:49

您可以使用 HTML 的 ondragover 事件来避免将文件拖到 Internet Explorer 中。我在 IE 7.0 中尝试过它工作正常....:)

请遵循以下代码:

<body ondragover="return false"></body>

You can avoid dragging files into the internet explorer by using ondragover event of HTML. I tried in I.E 7.0 its working fine....:)

follow this code:

<body ondragover="return false"></body>
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文