Hy,这是我的标签条
@(Html.Kendo().TabStrip()
.Name("test")
.Items(tabstrip =>
{
tabstrip.Add().Text("")
.Selected(true)
.ContentHtmlAttributes(new { style = "overflow: auto;" })
.Content("");
}
)
.SelectedIndex(0)
)
mu选择事件
$("#test .k-tabstrip-items").on("click", "li.k-state-default", function (e) {
var selectedtab = tab.select();
alert(selectedtab.text);
});
但警报只会在标签更改时显示第二次点击。请帮帮我
答案 0 :(得分:0)
这对你有用吗? var selectedtab = $(this).text();