Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
是否可以在 KendoUI TabStrip 中找到选项卡的索引?我需要找到我选择的选项卡的索引(编号),我知道这会select()返回当前选项卡,但我不知道如何将其转换为数字。
select()
找到了解决方案:
$("#tabstrip").data("kendoTabStrip").select().index();
function select(e) { var x = e.item; var index= $(e.item).index(); $(".tabindex").val(index); }
正如 nemesv 在https://stackoverflow.com/a/15646629/2127493中所说