• 首页 首页 icon
  • 工具库 工具库 icon
    • IP查询 IP查询 icon
  • 内容库 内容库 icon
    • 快讯库 快讯库 icon
    • 精品库 精品库 icon
    • 问答库 问答库 icon
  • 更多 更多 icon
    • 服务条款 服务条款 icon

强制浏览器在点击时下载图像文件

用户头像
it1352
帮助1

问题说明

我需要浏览器来下载图像文件,就像在单击 Excel 工作表时一样.

I need the browser to download the image files just as it does while clicking on an Excel sheet.

有没有办法只使用客户端编程来做到这一点?

Is there a way to do this using client-side programming only?

<html xmlns="http://www.w3.org/1999/xhtml">
    <head>
        <title></title>
        <script type="text/javascript" src="https://www.swvq.com/Scripts/jquery-1.10.2.js">
        $(document).ready(function () {
            $("*").click(function () {
                $("p").hide();
            });
        });
        </script>
    </head>

    <script type="text/javascript">
        document.onclick = function (e) {
            e = e || window.event;
            var element = e.target || e.srcElement;
            if (element.innerHTML == "Image") {
                //someFunction(element.href);
                var name = element.nameProp;
                var address = element.href;
                saveImageAs1(element.nameProp, element.href);
                return false; // Prevent default action and stop event propagation
            }
            else
                return true;
        };

        function saveImageAs1(name, adress) {
            if (confirm('you wanna save this image?')) {
                window.win = open(adress);
                //response.redirect("~/testpage.html");
                setTimeout('win.document.execCommand("SaveAs")', 100);
                setTimeout('win.close()', 500);
            }
        }
    </script>

    <body>
        <form   runat="server">
            <div>
                <p>
                    <a href="http://localhost:55298/SaveImage/demo/Sample2.xlsx" target="_blank">Excel</a><br />
                    <a href="http://localhost:55298/SaveImage/demo/abc.jpg" id="abc">Image</a>
                </p>
            </div>
        </form>
    </body>
</html>

How should it work in case of downloading an Excel sheet (what browsers do)?

在下载Excel表格的情况下应该如何工作(浏览器做什么)?

正确答案

#1

使用 HTML5,您可以将下载"属性添加到链接中.

<a href="https://www.swvq.com/path/to/image.png" download>

<a href="https://www.swvq.com/path/to/image.png" 下载>

兼容的浏览器将提示下载具有相同文件名的图像(在本例中为 image.png).

If you specify a value for this attribute, then that will become the new filename:

如果您为此属性指定一个值,那么它将成为新的文件名:

<a href="https://www.swvq.com/path/to/image.png" download="AwesomeImage.png">

<a href="https://www.swvq.com/path/to/image.png" download="AwesomeImage.png">

这篇好文章是转载于:学新通技术网

  • 版权申明: 本站部分内容来自互联网,仅供学习及演示用,请勿用于商业和其他非法用途。如果侵犯了您的权益请与我们联系,请提供相关证据及您的身份证明,我们将在收到邮件后48小时内删除。
  • 本站站名: 学新通技术网
  • 本文地址: /reply/detail/tangcckac
系列文章
更多 icon
同类精品
更多 icon
继续加载