模拟浏览器文件下载

模拟浏览器文件下载:

   浏览器左上角打开一个新窗口下载文件:

<!DOCTYPE html>
<html>

    <head>
        <meta charset="UTF-8">
        <title></title>
        <style type="text/css">
            #dwurl {
                width: 40%;
                height: 150px;
            }
        </style>
    </head>

    <body>
        <textarea id="dwurl">http://sysprogs.com/getfile/409/SmarTTY-3.1.msi</textarea>
        <br />
        <input type="button" onclick="dwbut();" value="下载" />
    </body>
    <script src="http://libs.baidu.com/jquery/2.0.0/jquery.min.js"></script>
    <script type="text/javascript">
        function dwbut() {
            var dwurl = $("#dwurl").val().trim();
            window.open(dwurl, 'newWin', 'toolbar=no,location=no,status=no,menubar=no,scrollbars=no,resizable=no,draggable=false,width=500,height=150');
        }
    </script>

</html>

猜你喜欢

转载自blog.csdn.net/qq_36521848/article/details/106167171
今日推荐