拖放 从 HTA 文件中删除图像
例如,您可以从 HTML 应用程序(.hta 文件
)中拖动任何图像并将其放入桌面。
有人知道如何禁用此功能吗?
我希望 .hta
文件具有与 .html
文件相同的行为。
From a HTML application (.hta file
), you can drag any image and drop it into the desktop for example.
Does anybody know how to disable this capability?
I want the .hta
files to have the same behavior as the .html
files.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
您可以向图像添加
ondragstart="return false;"
事件处理程序,看看是否有帮助。You can add an
ondragstart="return false;"
event handler to your images and see if that helps.任何将 HTA 文件重命名为 HTML 文件的人都可以保存图像。
Anyone who renames your HTA file to an HTML file will be able to save the images.