不在Internet Explorer中的IFrame中加载PDF文件

时间:2015-01-05 12:34:50

标签: javascript c# jquery html asp.net

我尝试在IFrame中加载PDF文件。它正在使用FF和Chrome,但不会在IE中加载。 IE要求保存或打开文件而不是在IFrame中加载。我正在使用javascript加载文件。

我正在使用以下代码:

<html>
<head>
<script type="text/javascript">
function setPDF() {
    var iframe = document.getElementById('iframe1');
    iframe.src = "pdffile/sample1.pdf";
}
</script>
</head>
<body>
<iframe id="iframe1"></iframe>
<input type="button" value="Click" onclick="setPDF();" />
</body>

</html>

请建议我

由于

0 个答案:

没有答案
相关问题