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

In the event of an error, the media element's error event will be fired. The element's error property will then contain an msExtendedCode read-only property with platform-specific error code information.

msExtendedCode is a read-only proprietary property specific to Internet Explorer and Microsoft Edge.

类型: long ; The platform specific error code.

范例

var video1 = object.getElementById("video1");
video1.addEventListener('error', function () {
  var error = video1.error.msExtendedCode;
  //...
}, false);
video.addEventListener('canplay', function () {
  video1.play();
}, false);
					

元数据

  • 最后修改: