How to know if a tab is enabled on jQuery tabs?

前端 未结 2 886
被撕碎了的回忆
被撕碎了的回忆 2021-01-13 20:05

I can\'t find in the API of jQuery UI Tabs ( http://docs.jquery.com/UI/Tabs) a method to know if a certain tab is enabled or not, I need that because in an event of my appli

相关标签:
2条回答
  • 2021-01-13 20:51

    You're almost there (it's on your link): disabled

    //getter
    var disabled = $( ".selector" ).tabs( "option", "disabled" );
    //setter
    $( ".selector" ).tabs( "option", "disabled", true );
    
    0 讨论(0)
  • 2021-01-13 20:53

    The disabled option returns an aray of he indexes of the disabled tabs, so a function to check if one's disabled would look like this:

    function isDisabled(index) {
      return $.inArray(index, $("#tabs").tabs("option", "disabled")) > -1;
    }
    

    You can give it a try here, this just uses $.inArray() to see if the index is present, just remember the index is 0 based, so the 1st tab is 0, 2nd one is 1, etc.

    0 讨论(0)
提交回复
热议问题