标签: jquery firefox
我想打开任何pdf文件链接到新的浏览器窗口。以下jquery代码工作正常,除了在firefox中打开文件保存对话框。
jQuery(function($) { $('a[href$=".pdf"]').attr('target', '_blank'); });
我们可以强制firefox打开像chrome这样的文档吗?
答案 0 :(得分:1)