Javascript验证onblur

时间:2015-04-02 07:36:55

标签: javascript

我已经为两个文本框编写了两次相同的javascript但是它运行了一个文本框的脚本我需要编写一次并为更多文本框调用相同

    function checkalphabets() {
    var pattern = /^[a-zA-Z\s]+$/;
    if (!pattern.test(myTextBox.value)) {
        modal({
            type: 'warning',
            title: 'Warning',
            text: 'Only Alphabets allowed!',
            center: false,
             callback: function(){ $("#myTextBox").focus();}
        });

        exit;
        return false;
    }
    return true;

}
function checkalphabets1() {
    var pattern = /^[a-zA-Z\s]+$/;
    if (!pattern.test(TextBox1.value)) {
        modal({
            type: 'warning',
            title: 'Warning',
            text: 'Only Alphabets allowed!',
            center: false,
             callback: function(){ $("#TextBox1").focus();}
        });

        exit;
        return false;
    }
    return true;

}
 $('.modal-btn').click(function() {

        $('#modal-window').hide();

    });

这是fiddle

3 个答案:

答案 0 :(得分:0)

您可以将要检查的元素作为函数的参数传递:

function checkalphabets($el) {
    var pattern = /^[a-zA-Z\s]+$/;
    if (!pattern.test($el.val())) {
        modal({
            type: 'warning',
            title: 'Warning',
            text: 'Only Alphabets allowed!',
            center: false,
             callback: function(){ $el.focus();}
        });

        return false;
    }
    return true;
}

调用时传递元素,并对元素进行检查。

checkalphabets($("#TextBox1"));

答案 1 :(得分:0)

代码中的

textbox1和mytextbox未定义。将元素传递给函数以进行定义:

function checkalphabets(myinput) {
    var pattern = /^[a-zA-Z\s]+$/;
    if (!pattern.test(myinput.value)) {
        modal({
            type: 'warning',
            title: 'Warning',
            text: 'Only Alphabets allowed!',
            center: false,
             callback: function(){ $(myinput).focus();}
        });

        exit;
        return false;
    }
    return true;
}

 $('.modal-btn').click(function() {

        $('#modal-window').hide();

    });

我也建议onkeyup而不是onblur来检查每个角色:

<input name="myTextBox" type="text" id="myTextBox" onkeyup="checkalphabets(this)" />
<input name="TextBox1" type="text" id="TextBox1" onkeyup="checkalphabets(this)" />

Aslo最好在警告后减去不允许的字符。

答案 2 :(得分:0)

你能想到把这个值作为Javascript&amp;中函数的输入传递吗?从这个变量中提取值,如下所述?

HTML:

<form method="post" action="test.aspx" id="form1">
<div class="aspNetHidden">
<input type="hidden" name="__VIEWSTATE" id="__VIEWSTATE" value="/wEPDwUJODIwMTY2MjU3ZGQVs14nJwqB/iIms8CsXW3SCzs22w==" />
</div>

<div class="aspNetHidden">

    <input type="hidden" name="__VIEWSTATEGENERATOR" id="__VIEWSTATEGENERATOR" value="75BBA7D6" />
</div>
    <div>
        <input name="myTextBox" type="text" id="myTextBox" onblur="checkalphabets(this)" />
        <input name="TextBox1" type="text" id="TextBox1" onblur="checkalphabets(this)" />   
    </div>
    </form>

使用Javascript:

function checkalphabets(thisValue) {
    var pattern = /^[a-zA-Z\s]+$/;
    if (!pattern.test(thisValue.value)) {
        modal({
            type: 'warning',
            title: 'Warning',
            text: 'Only Alphabets allowed t1 & t2!',
            center: false,
             callback: function(){ $(thisValue).focus();}
        });

        exit;
        return false;
    }
    return true;
}
 $('.modal-btn').click(function() {
        $('#modal-window').hide();
    });

同样,你可以使用任意数量文本框的相同方法!