最近我正在尝试制作一个用于 WMP 疑难解答的网页。我想做的是,如果由于缺少 WMP 编解码器、未能通过 DRM 等问题,访问者无法播放我页面上的资源...等,然后我将向他们展示一些有关如何修复它的信息。我搜索了一个示例,问题是ErrorCode
WMP 对象的属性wmpocx
总是出现,因为undefined
它确实存在。那么我怎样才能获得 WMP 错误代码在 JSCript 中?
问候
最近我正在尝试制作一个用于 WMP 疑难解答的网页。我想做的是,如果由于缺少 WMP 编解码器、未能通过 DRM 等问题,访问者无法播放我页面上的资源...等,然后我将向他们展示一些有关如何修复它的信息。我搜索了一个示例,问题是ErrorCode
WMP 对象的属性wmpocx
总是出现,因为undefined
它确实存在。那么我怎样才能获得 WMP 错误代码在 JSCript 中?
问候
通过阅读微软网站上的安全组件升级页面的源代码找到解决方案。
主要代码:
var error = wmpocx.error;
var errorItem;
var index; //index into the error queue.
var message;
//The error is an error object that can have multiple errors in a queue
//error.errorCount is the count of errors in the error queue
for(index=0; index<error.errorCount; index++)
{
errorItem = wmpocx.error.item(index);
//you can get information on the error with the following properties
//errorItem.errorCode
ecode = errorItem.errorCode;
message = errorItem.errorDescription;
}