我有一个这样定义的 KendoUI TabStrip:
@(Html.Kendo().TabStrip()
.Name("tabMain")
.Items(items =>
{
items.Add().Text("Search/Manage User").Content("Some text");
items.Add().Text("Create New User").Content("Some text");
})
.SelectedIndex(0)
.Animation(false)
)
当我选择一个选项卡时,页面的 URL 更改为localhost/#TabMain-1并且页面滚动到该选项卡。
如何关闭该行为?