Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我想打开任何指向新浏览器窗口的 pdf 文件链接。以下 jquery 代码工作正常,但在打开文件保存对话框的 Firefox 中除外。
jQuery(function($) { $('a[href$=".pdf"]').attr('target', '_blank'); });
我们可以强制firefox像chrome一样打开文档吗?
大卫是对的。打开某些 MIME 类型(如 PDF)的浏览器行为因浏览器、浏览器版本、操作系统等而异。您甚至可以强制下载资源,而不是对其进行可视化。总之,这是我们无法控制的。