jQuery 媒体插件在 firefox4 中不起作用
我使用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文件作为下载文件
I had used jquery media plugin to display pdf file in html
This is my following codes...
<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>
My html file displays pdf file in all browser except ff4.
Why Firefox4 doesnt display pdf file instead of displaying it throw out pdf file as download file
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
FF4上安装了Adobe Reader插件吗?
即便如此,似乎还是存在一个错误 http://support.mozilla.com/en-US /questions/803288。
最佳测试 - 您可以在 FF4 浏览器中查看来自其他网站的其他 pdf 文件吗?
Do you have the Adobe Reader plugin installed on FF4?
Even so there looks to be a bug http://support.mozilla.com/en-US/questions/803288.
Best test - can you view other pdf files, from other sites in the FF4 browser?