check if jQuery UI tabs have been initialized (without checking for class)

[亡魂溺海] 提交于 2019-11-30 00:30:52

问题


Using jQuery UI tabs - and I've written a plugin that integrates with ui tabs. I've got the plugin setup to initiate jQuery UI tabs if it .tabs() hasn't been called, but this just does a simple class check:

 if(!$globalTabs.hasClass("ui-tabs")){
    $globalTabs.tabs();
 }

But this is problematic, because often to avoid FOUC, developers add in the UI classes to the the tabs to get a better initial render before document.ready.

I could check for a different class, such as `ui-widget1, but wondering if there's another/better way?


回答1:


You can query the attached widget with data():

if (!$globalTabs.data("tabs")) {
    $globalTabs.tabs();
}

This behavior is documented in the Widget factory page of jQuery UI's Development & Planning Wiki:

  • Plugin instance accessible via $( "#something" ).data( "pluginname" )

    • A reference to a jQuery object containing the DOM element is available as a property of the instance as this.element, so it is easy to go back and forth between the object and the element.

Update: From jQuery UI 1.9 onwards, the widget key becomes the widget's fully qualified name, with dots replaced with dashes, as in:

if (!$globalTabs.data("ui-tabs")) {
    $globalTabs.tabs();
}

Using unqualified names is still supported in 1.9 but is deprecated, and support will be dropped in 1.10.




回答2:


somehow it causes some error when i try to check the instance.

i need to reinitialize the tabs and for me a try catch did the trick:

try {
    $('.mytabs').tabs('destroy');
} catch (exception) {}

and after that just initialize again:

$('.mytabs').tabs();


来源:https://stackoverflow.com/questions/12393773/check-if-jquery-ui-tabs-have-been-initialized-without-checking-for-class

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!