Javascript Kendoui:在Kendoui中单击选项卡时获取选项卡名称

Javascript Kendoui:在Kendoui中单击选项卡时获取选项卡名称,javascript,jquery,kendo-ui,Javascript,Jquery,Kendo Ui,嗨.. 当我在剑道tabstrip中选择on tab时,我需要警报选项卡名称。 有人帮我吗???找到解决方案 选择:函数(元素){alert($(element.item).text())} $(document).ready(function () { $("#tabstrip").kendoTabStrip( { animation: { open: { effects: "fadeIn"

嗨..
当我在剑道tabstrip中选择on tab时,我需要警报选项卡名称。
有人帮我吗???

找到解决方案
选择:函数(元素){alert($(element.item).text())}

 $(document).ready(function () {
 $("#tabstrip").kendoTabStrip( {
            animation:  {
                open: {
                    effects: "fadeIn"
                }
            },
  select: function(element){alert('alert select tab name');}            
        });
        });