gpt4 book ai didi

c# - 我怎样才能写一个重置函数

转载 作者:行者123 更新时间:2023-11-28 20:31:18 25 4
gpt4 key购买 nike

我正在寻找一种在用户编辑值并点击重置按钮时重置表单的方法。

我的表单包含:2 个文本字段4个复选框

该值来 self 在模型中创建的 6 个元素:

    public class MyModel
{
public MyModel()
{
Field1 = 8;
Checkbox1 = true;
Checkbox2 = true;
Checkbox3 = true;
Checkbox4 = true;
Field2 = 1;
}

[DisplayName("TextField 1")]
[Range(4, 64, ErrorMessage = "Test Error")]
public int Field1 { get; set; }

[DisplayName("CheckBox 1")]
public bool Checkbox1 { get; set; }

[DisplayName("CheckBox 2")]
public bool Checkbox2 { get; set; }

[DisplayName("CheckBox 3")]
public bool Checkbox3 { get; set; }

[DisplayName("CheckBox 4")]
public bool Checkbox4 { get; set; }

[DisplayName("TextField 2")]
[Range(1, 50, ErrorMessage = "Test Error")]
public int Field2 { get; set; }

}
}

例如,当用户取消选中复选框 1 并将值 1 从 Field2 编辑为 199 并单击重置按钮时,所有元素都将重置为 MyModel() 中的值

谁能帮我解决这个问题?

最佳答案

只需使用 <input type="reset" /> 。您不需要 jQuery 或刷新,至少自 marquee 标记以来,此功能已内置到浏览器中。

关于c# - 我怎样才能写一个重置函数,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/16314952/

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