在IE8上下載文件時,無法下載,提示內容如圖:
java代碼:
byte abyte1[];
response.addHeader("Content-Disposition:", "inline;filename="+ Id + ".pdf");
response.setContentType("application/pdf");
response.setContentLength(abyte1.length);
response.getOutputStream().write(abyte1);
response.getOutputStream().flush();
JS代碼
window.open("xxxxxxx");
這個怎麼解決,在google、360等浏覽器都沒有問題
問題已經解決了,解決方式為修改js中的window.open("xxxx")為a.click()
IE8對js的兼容性太差了!