我想标题是不言自明的!我正在使用 Primefaces tabView,并添加了一个内联事件处理程序,如下所示:
<p:tabView effect="fade" id="myTabView" style="background:none;" dynamic="true" styleClass="myTabs" onTabShow="myShowFunction()">
.
.
</p:tabView>
我想使用 jQueryon
来绑定一个使用标签显示事件的事件处理程序。我尝试使用on('ontabsshow', myShowFunction)
,但它不起作用。I need to update a global variable when the tabs change (after completion of the transition). 因此,我需要将我的代码放在具有全局声明的同一个脚本中。
有什么指导吗?