非标
此特征是非标准的,且不在标准轨道中。不要在面向 Web 的生产站点中使用它:它不适用于每个用户。实现之间可能存在大的不兼容性,且行为将来可能改变。

msFirstPaint is a read-only property which gets the time when the document loaded by the window object began to be displayed to the user.

Put another way, msFirstPaint utilizes the browser to measure when the first content completes being painted in the window. It is available from javascript and can be reported from the field.

This proprietary property is specific to Internet Explorer and Microsoft Edge.

句法

p = object.msFirstPaint;
					

An Integer value that represents the time when the document began to be displayed or 0 if the document could not be loaded.

The numerical value reported represents the number of milliseconds between the recorded time and midnight January 1, 1970 (UTC).

This property is supported only for documents displayed in IE9 Standards mode.

范例

The following example shows how to calculate the time that is required to request the document before the document begins to display for the user.

  var oTiming = window.performance.timing;
  var iTimeMS = oTiming.msFirstPaint - oTiming.navigationStart;
					

元数据

  • 最后修改: