有没有办法在不使用 JavaScript 的情况下转到 Blazor 中的页面顶部?我有一个项目列表,用户可以单击其中一个进行编辑并在页面顶部查看更多详细信息。我正在为我的组件使用 MudBlazor。
问问题
516 次
2 回答
1
使用 .NET 5.0,您现在拥有 FocusAsync()
<input @ref="exampleInput" />
<button @onclick="ChangeFocus">Focus the Input Element</button>
@code {
private ElementReference exampleInput;
private async Task ChangeFocus()
{
await exampleInput.FocusAsync();
}
}
于 2021-03-11T06:39:35.703 回答
0
为了到达页面顶部,我使用 NavigationManager 导航到同一页面,其中 forceLoad 设置为 false(默认值)
@inject NavigationManager NavigationManager
NavigationManager.NavigateTo($"/{currentpage}");
这有点麻烦,但它可以工作并且不会重新加载页面。
于 2021-03-11T17:31:50.503 回答