gpt4 book ai didi

asp.net - 在 .net onblur 事件标签中显示消息,是否可能

转载 作者:行者123 更新时间:2023-11-29 20:23:55 24 4
gpt4 key购买 nike

我有两个文本框,当我转到第二个文本框时没有在第一个 tetxbox 中输入值,它在文本框旁边的标签中显示消息。在 dotnet 中是否可能,我不想要警告消息,我想在标签中显示该消息。

我已经编写了代码,使用 javascript iam 在 onblur 事件中显示警报消息。

最佳答案

您可以为此使用 RequiredFieldValidator 控件。

<asp:RequiredFieldValidator id="rqField1"
ControlToValidate = "ID of input control to validate"
InitialValue = ""
ErrorMessage = "message to display in ValidationSummary control"
Text = "message to display in control"
runat="server" />

HOW TO: Use the RequiredFieldValidator Control with Other Validation Controls to Handle Blank Entries

基于 jQuery 的解决方案

$(function(){
$("#txt1").bind("blur", function(){
var val = $.trim($(this).val());
if ( val === "" )
{
$("#spnError").show();
}
else
{
$("#spnError").hide();
}
});
});

<span id="spnError" style="display: none">Please enter valid input</span>
<input type="text" id="txt1" />
<input type="text" id="txt2" />

关于asp.net - 在 .net onblur 事件标签中显示消息,是否可能,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/2310516/

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