如何解决Firefox和Safari中的性能条目类型FP和FCP问题?

时间:2019-12-04 12:17:51

标签: firefox safari web-performance performance-measuring

似乎Firefox和Safari在性能条目类型“ first-paint”和“ first-contentful-paint”上甚至存在不支持的问题。 处理这些指标的替代方法是什么?

Firefox中的错误

enter image description here

Safari错误:

enter image description here

1 个答案:

答案 0 :(得分:0)

现在,我们使用performance.mark在HTML的开头标记一个标记,在body标记的最后一行标记一个标记。然后,我们使用performance.measure来测量这两个标记之间的持续时间。 也许有更好的方法来解决这个问题。

 <html>
   <head>
    <script>
        performance.mark('started');


<script>
    performance.mark('first-contentful-paint');
</script>
</body>