检测 XUL 中的选项卡框选项卡更改

发布于 2024-11-02 10:13:27 字数 132 浏览 1 评论 0原文

检测 tabbox 内选项卡之间切换的最佳方法是什么? 特别是,我需要检测某个选项卡何时打开,以及用户何时离开它(切换到另一个选项卡)。

我现在使用 onclick 但这感觉很黑客。

What's the best way to detect switching between tabs inside a tabbox?
In particular, I need to detect when a certain tab is opened, and when the user leaves it (switches to another tab).

I'm using onclick now but that feels hackish.

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

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

发布评论

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

评论(2

不醒的梦 2024-11-09 10:13:27

我承认它可能位于页面顶部附近更显眼的位置,但是文档 说:

选定的面板

类型:元素

保存对元素中当前选定面板的引用。给这个赋值>属性将修改选定的面板。 当所选面板发生更改时,将发送选择事件

目前尚不完全清楚事件目标是选项卡框还是单个面板,因此您可能需要进行一些尝试。

I admit it could be in a more prominent place near the top of the page, but the documentation says:

selectedPanel

Type: element

Holds a reference to the currently selected panel within a element. Assigning a value to this > property will modify the selected panel. A select event will be sent when the selected panel is changed.

It's not totally clear whether the event target is the tabbox or the individual panel, so you may have to experiment a little bit.

我的黑色迷你裙 2024-11-09 10:13:27

监听 tabpanels 元素上的 select 事件:

var panels = document.getElementById("tabpanels"); // whatever your ID is
panels.addEventListener("select", function(e) {
    var el = e.target;
    alert(e.target.tagName); // tabpanels
    alert(e.target.selectedPanel) // [object XULElement] (the selected tab)
}, false);

Listen for the select event on the tabpanels element:

var panels = document.getElementById("tabpanels"); // whatever your ID is
panels.addEventListener("select", function(e) {
    var el = e.target;
    alert(e.target.tagName); // tabpanels
    alert(e.target.selectedPanel) // [object XULElement] (the selected tab)
}, false);
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文