尝试使用 java-script 下载文件时出现以下错误。
错误:
Internet Explorer cannot download Sample.doc from www.websitename.com.
Internet Explorer was not able to open this Internet site. The request is either unavailable or cannot be found.Please try again later.
HTML:
<html>
<head>
<script type="text/javascript" language="javascript">
function winopen()
{
window.open("Sample.doc","_self","fullscreen=no,toolbar=yes, width=800, height=600, menubar=yes, status=no,scroll=yes");
}
</script>
</head>
<body onload="winopen();">
</body>
</html>
有谁知道如何解决这个问题?谢谢。