3

Chrome 开发人员工具会在控制台上显示从清单中下载的文件的名称。这在事件window.applicationCache.onprogress触发时发生。是否可以获取使用 javascript 进行 dwld 处理的文件名?例如我想要这样的东西e.filename

window.applicationCache.onprogress=function(e) {
   if(e.lengthComputable){
      document.getElementById('progressBar').value=Math.round(e.loaded/e.total*100);
   }
   sideNotice=document.getElementById('sideNotice');
   sideNotice.innerHTML+="Downloading "+e.filename+"<br/>";
};
4

0 回答 0