我想充分利用链接预加载从cloudTypography加载外部CSS字体样式。但是,以下代码似乎只能在Chrome上运行,而不能在Safari,Firefox或Edge上运行。
<link rel="preload"
as="style"
onload="this.rel = 'stylesheet'"
href="https://cloud.typography.com/.../css/fonts.css"
crossorigin />
<noscript>
<link rel="preload"
as="style"
onload="this.rel = 'stylesheet'"
href="https://cloud.typography.com/.../css/fonts.css"
crossorigin/>
</noscript>
不支持此功能的浏览器是否有后援?