使用网页上的选项卡

发布于 2024-07-30 18:05:59 字数 143 浏览 3 评论 0原文

我在我的网站上使用 zapatec 选项卡。 我想在加载选项卡时触发一些 javascript 函数。 由于 window.onload 不起作用,我该怎么办? 有一个主页上添加了选项卡,这就是为什么在加载选项卡时该页面已经加载的原因。 提前致谢, 问候理查德。

I am using zapatec tabs on my website. There are some javascript function which I want triggered when tab is loading. How do I go about it since the window.onload is not working. There is one main page on which the tabs are added and that is why the page is already loaded by the time the tabs are being loaded.
Thanks in advance,
Regards Richard.

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

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

发布评论

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

评论(1

手心的海 2024-08-06 18:05:59

根据我能够找到的 Zapatec 文档,有有两个事件可供您使用,具体取决于您想要执行函数的确切时间:

onBeforeTabChange

onBeforeTabChange 选项允许您设置当用户指示离开选项卡时调用的回调。 在回调中返回 false 以防止选项卡更改,返回 true 以允许更改。

onBeforeTabChange 的常见用途是验证选项卡的内容,如果用户需要在转到另一个选项卡之前修复一些错误,则返回 false。

onTabChange

onTabChange 选项允许您设置一个回调,该回调在焦点离开旧选项卡并位于新选项卡上后调用。 各个选项卡 ID 在一个名为 objArgs 的参数中传递。

According to the Zapatec documentation I was able to find, there are two events available to you, depending on when exactly you want to execute your functions:

onBeforeTabChange:

The onBeforeTabChange option allows you to set a callback that is called when the user has indicated to leave a tab. Return false in the callback to prevent tab change, return true to allow it.

A common use of onBeforeTabChange is to validate the contents of a tab, and return false if the user needs to fix some errors before moving on to another tab.

onTabChange

The onTabChange option allows you to set a callback that is called after the focus has left the old tab and is on the new one. The respective tab IDs are passed in one argument called objArgs.

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