插件关闭和解析参数

发布于 2024-11-12 08:04:59 字数 299 浏览 3 评论 0原文

我正在编写一个应该显示某些对象的 firebreath 插件。

有很多失败的情况,因为它是与本地软件通信。

如果发生故障,我想关闭插件并显示常规图像。或者获取图像 URL 作为参数,解析文件并显示它。

两种选择都是可以接受的。

那么-

  • 什么是更好的选择?
  • 如何完全关闭该插件?
  • 如何解析从对象标记传递的参数?

我尝试了plugin->getParam("Name"),但没有得到我传递的值。

我该怎么做?

I am writing a firebreath plugin that is supposed to display some object.

There are many cases of failure, since it is communicating with local software.

In case of a failure I want to close the plugin and to display a regular image instead. Or to get an image URL as a parameter, to parse the file and display it.

Both options are acceptable.

So-

  • What is the better option?
  • How do I totally close the plugin?
  • How do I parse parameters that are passed form the object tag?

I tried plugin->getParam("Name"), but didn't get the valueI passed.

How do I do it?

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

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

发布评论

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

评论(1

送你一个梦 2024-11-19 08:04:59

假设您的 HTML 看起来像这样:

 <div id="plugincontainer">
    <object id="myplugin" type="application/x-myplugin" width="100" height="100">
    </object>
 </div>

您应该能够像这样删除插件:

 document.GetElementById('plugincontainer').innerHTML = "";

或者如果您使用 jQuery:

 $("#plugincontainer").empty();

这将导致调用 Firebreath 内部的 onWindowDetached,您可以在其中卸载代码。

然后您就可以将新的 HTML 添加到 DOM 中:

 $("#plugincontainer").append("<img src='images/my.jpg' />");

Assuming your HTML looks something like this:

 <div id="plugincontainer">
    <object id="myplugin" type="application/x-myplugin" width="100" height="100">
    </object>
 </div>

You should be able to remove the plugin like this:

 document.GetElementById('plugincontainer').innerHTML = "";

Or if you're using jQuery:

 $("#plugincontainer").empty();

This will result in a call to onWindowDetached inside of Firebreath where you can unload your code.

You're then able to add new HTML into the DOM:

 $("#plugincontainer").append("<img src='images/my.jpg' />");
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文