从 XBL 调用方法

发布于 2024-10-08 11:39:16 字数 594 浏览 4 评论 0原文

从XBL方法中,当我需要调用另一个方法时,我确实喜欢:

        <method name="myMethod_1">
            <body>
                <![CDATA[
                    // do staff
                ]]>
            </body>
        </method>


        <method name="myMethod_2">
            <body>
                <![CDATA[
                    document.getElementById("thisElementID").myMethod_1();
                ]]>
            </body>
        </method>

我想知道是否有一种方法可以在不需要元素id的情况下调用本地方法?我已经尝试过 this.myMethod_1() 但它说该方法不存在。

From a XBL method, when I need to call another method, I do like:

        <method name="myMethod_1">
            <body>
                <![CDATA[
                    // do staff
                ]]>
            </body>
        </method>


        <method name="myMethod_2">
            <body>
                <![CDATA[
                    document.getElementById("thisElementID").myMethod_1();
                ]]>
            </body>
        </method>

I would like to know if is there a way to call the local method without need the element id? I've tried this.myMethod_1() but it says the method don't exist.

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

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

发布评论

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

评论(2

初吻给了烟 2024-10-15 11:39:16

在事件侦听器的特定情况下,还有另一种方法可以解决该问题,即将元素本身作为侦听器传递。当然,您只能获得一个handleEvent 方法,因此如果您正在侦听许多不同事件目标上的许多不同事件,则该方法不太有用。

<implementation implements="nsIDOMEventListener">
  <method name="handleEvent">
    <parameter name="aEvent"/>
    <body>
      <![CDATA[
        // do stuff
      ]]>
    </body>
  </method>

In the specific case of an event listener, there is another way around the problem, and that is to pass the element itself as the listener. Of course you only get one handleEvent method, so this is less useful if you're listening to lots of different events on lots of different event targets.

<implementation implements="nsIDOMEventListener">
  <method name="handleEvent">
    <parameter name="aEvent"/>
    <body>
      <![CDATA[
        // do stuff
      ]]>
    </body>
  </method>
枫以 2024-10-15 11:39:16

您能向我们展示调用 myMethod_2 的代码吗?如果你这样称呼它: document.getElement(...).myMethod_2() 那就没问题,但如果你有类似 someElement.addEventHandler("click", myxbl.myMethod_2,...); 的东西这是行不通的,因为事件目标将是this

这对于确定上下文中的这个很重要

编辑:(汤姆的回复)

哦,我想我明白了..这正是问题所在..我正在打电话它来自另一个文档的按键监听器,而“这个”不是我想的那样。

can you show us code calling myMethod_2? If you call it like: document.getElement(...).myMethod_2() that's fine, but if you have something like someElement.addEventHandler("click", myxbl.myMethod_2,...); that won't work since event target will be this.

This is important for determining what is this in that context

EDIT: (Tom's reply)

ow, think I got it.. it's exactly this the problem.. I'm calling it from a keypress listener of another document, and the "this" was not what I think..

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