get the current tab in jQuery UI tabs

后端 未结 11 1124
無奈伤痛
無奈伤痛 2021-01-01 16:46

I am using jQuery UI Tabs inside of the jQuery UI dialog window.

I\'ve come across an instance, where I need to find the id of the current tab when clicking on one o

11条回答
  •  夕颜
    夕颜 (楼主)
    2021-01-01 17:09

    Asume that ui tabs container's id is tab-container. Working snippet is

    $('#tab-container').find('>div:nth-of-type(' + ($('#tab-container').tabs("option", "active") + 1) + ')'); 
    

    Tested with jQuery UI v1.11.2, jQuery v1.11.3 and Chrome 45.

提交回复
热议问题