【发布时间】:2011-06-09 07:19:06
【问题描述】:
我曾使用 jquery 媒体插件在 html 中显示 pdf 文件
这是我的以下代码...
<head>
<title>New document</title>
<meta http-equiv="content-type" content="text/html; charset=iso-8859-1" />
<script language="javascript" src="js/jquery.js"></script>
<script language="javascript" src="js/jquery_media.js"></script>
<script language="javascript">
jQuery(document).ready(function($){
$('a.media').media({width:500, height:400});
});
</script>
</head>
<body>
<a class="media" href="check_pdf.pdf">PDF File</a>
</body>
我的 html 文件在除 ff4 之外的所有浏览器中显示 pdf 文件。
为什么 Firefox4 不显示 pdf 文件而不是显示它而将 pdf 文件作为下载文件丢弃
【问题讨论】:
标签: jquery jquery-plugins firefox4