如何在IE11上单击文件时触发保存目标?

时间:2015-10-19 05:47:09

标签: javascript jquery

我在Amazon S3上上传了一些文件。在Firefox和Chrome等其他浏览器上,我可以点击,浏览器会自动下载。但在IE11中,它直接在浏览器上显示。我想触发"将目标保存为"在IE11上下载此文件。我怎样才能做到这一点?这是我的HTML:

<a href="<link>" target="_blank">1.xlsx</a>

2 个答案:

答案 0 :(得分:1)

简短的回答是,你不能。浏览器是下载文件还是在浏览器中显示文件,这是一种浏览器设置,而不是您可以直接控制的内容,因为它只是直接链接到文件。

但是,如果您可以访问PHP,则可以更改HTML标头,以便浏览器显式下载内容,而不是允许其执行任何操作。

Force file download with php using header()

答案 1 :(得分:1)

除了@Nelson建议的内容外,您还可以使用.htaccess

执行此操作
<!DOCTYPE html>
<html ng-app="app">

<head>
  <script src="https://code.jquery.com/jquery.min.js"></script>
  <link href="https://netdna.bootstrapcdn.com/twitter-bootstrap/2.3.2/css/bootstrap-combined.min.css" rel="stylesheet" type="text/css" />

  <script src="https://ajax.googleapis.com/ajax/libs/angularjs/1.2.26/angular.min.js"></script>
  <meta charset="utf-8">
  <title>AngularJS Filter</title>
</head>

<body ng-controller="controller">
  <div class="container">
    <br>
    <input type="text" ng-model="search" placeholder="Search..." />
    <table class="table table-striped">
      <thead>
        <th>Name</th>
        <th>Age</th>
      </thead>
      <tbody>
        <tr ng-repeat="item in list | filter: filterAge">
          <td>{{ item.fName }}</td>
          <td>{{ item.age }}</td>
        </tr>
      </tbody>
    </table>
  </div>
</body>

</html>