Disable open button in file download dialogue

當點擊連接時,要禁止文件(如xls,ppt)在網頁中自動打開,可在網頁頭加入meta 信息.

<script type="text/javascript"> 

var head=document.getElementsByTagName('head')[0];
var meta = document.createElement('meta');
meta.name="DownloadOptions";
meta.content = "noopen"; 

head.appendChild(meta);
</script>

article clipper remember Disable open button in file download dialogue
 
  1. 目前没有评论。

  1. 目前没有引用通告。