gpt4 book ai didi

html - 如何在 ASP.Net MVC 中设置默认按钮

转载 作者:搜寻专家 更新时间:2023-10-31 08:03:45 25 4
gpt4 key购买 nike

这是我的 HTML 代码:

@using (Html.BeginForm("Index", "EmployeeList", FormMethod.Post, new {defaultbutton = "searchBtn" }))
{
@Html.TextBox("SearchString", ViewBag.SearchString as string, new { @id = "SearchString", @class = "form-control", placeholder = "Search Name" })

<button type="submit" name="MyButton" value="Export" class="btn btn-sm btn-danger">

<button type="submit" name="MyButton" value="Search" id="searchBtn" class="btn btn-sm btn-warning">
}

根据我的页面设计,我必须在“搜索”按钮之前编写“导出”按钮的 html 代码。

当我在填写搜索文本后按下 enter 时,“导出”按钮被点击,而不是我需要点击“搜索”按钮。

最佳答案

你可以处理 kewdown 事件:

 <script type="text/javascript">
$(document).bind('keydown', function (e) {
if (e.which === 13) { // return
$('#searchBtn').trigger('click');
}
});
</script>

关于html - 如何在 ASP.Net MVC 中设置默认按钮,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/42828979/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com