在asp:textboxes上的jquery onblur空文本框验证

时间:2013-11-21 09:23:12

标签: c# jquery asp.net html5

我有一系列的asp:textboxes(大约30个)我想验证它们是否为空(当用户转到其他文本框时),当用户将它们留空时(模糊)我找到了关于它的教程但是它仅指定给几个文本框,我该如何实现呢?

<form id="form1" runat="server">

<asp:TextBox ID="txtLname" runat="server" placeholder="Last Name" BackColor="White" BorderColor="#C2C4CC" BorderStyle="Solid" Height="28px" Width="135px" title="Enter Your Last Name" onkeypress="return AllowAlphabet(event)" Enabled="False" TabIndex="4"></asp:TextBox>

2 个答案:

答案 0 :(得分:2)

你的实际标记会有点派上用场,但是根据我的信息:

$('input, textarea').blur(function() {
if ($(this).val() == "") alert("empty!");
});
  

当用户将它们留空时(模糊)我找到了教程   网

这是一句话?

答案 1 :(得分:0)

试试这段代码:

function CheckEmptyCheckBox() {
        var empty = 0;
        $('input[type=text]').each(function(){
           if (this.value == "") {
               empty++;
               $("#error").show('slow');
           } 
        })
       alert(empty + ' empty input(s)')
    }