IE中WMP插件播放某些资源失败时如何获取错误码?

发布于 2024-10-22 03:05:31 字数 359 浏览 0 评论 0原文

最近我正在尝试制作一个用于WMP故障排除的网页。我想做的是,如果由于缺少WMP编解码器、无法通过DRM等问题,访问者无法播放我页面上的资源... ,然后我将向他们展示一些有关如何修复该问题的信息。我已在 google 上搜索了示例< /strong> 问题是 WMP 对象 wmpocx 的属性 ErrorCode 总是以 undefined 的形式出现,而它确实存在。那么如何才能做到这一点呢?我在 JSCript 中收到 WMP 错误代码?

问候

Recently I'm trying to make a web page for WMP troubeshooting.And what I want to do is, if the vistors cannot play the resource on my page because of some problems such as missing WMP codec,failing to pass DRM...etc, then I'll show them some information about how to fix it.I've googled an example and the problem is the property ErrorCode of the WMP object wmpocx always comes up as undefined while it do exist there.So how can I get the WMP error code in JSCript?

Regards

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

忆沫 2024-10-29 03:05:31

通过阅读安全组件升级源码找到解决方案Microsoft 网站上的页面。

主要代码:

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;
}

Find the solution by reading the source code of the Security component upgrade page on Microsoft's website.

Main code:

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;
}
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文