1

我是 ASP.NET MVC 4 的新手,我有任何问题

我在这张图片(链接)之后有 5 个文本框。

http://i.stack.imgur.com/hMjJp.png

在每个文本框中,我为其设置了 maxlength。关注这张图片(链接)

http://i.stack.imgur.com/rSi4U.png

Example : textbox1 -> maxlength = 1
          textbox2 -> maxlength = 4
          textbox3 -> maxlength = 5

当我将数据插入每个文本框时,我想自动制表符。

Example : when I insert "1" to textbox1(maxlength=1) cursor will go to textbox2 AUTO

此后我想将数据设置为所有文本框

示例:字符串值 = textbox1 + textbox2 + ... + textbox5

        value = 1222233333...  

对于可能发生的任何错误,请提前接受我诚挚的歉意。

非常感谢你。

4

1 回答 1

0

像下面这样的东西应该可以工作,

标记

<div class="tax">
    <input type="text" maxlength="1" />
    <input type="text" maxlength="4" />
    <input type="text" maxlength="5" />
    <input type="text" maxlength="2" />
    <input type="text" maxlength="1" />
</div>

脚本

$(function () {
    $('.tax input[type="text"]').keypress(function (e) {
        if (e.which == 0 || e.charCode == 0) {
            return true;
        }
        var str = String.fromCharCode(!e.charCode ? e.which : e.charCode);
        str = $(this).val() + str;

        if (str.length == $(this).prop('maxlength')) {
            var that = this;
            window.setTimeout(function(){
                $(that).next('input[type="text"]').focus();
            }, 0);
        }
    });
});

小提琴:http: //jsfiddle.net/tkasD/5/

希望这可以帮助。

于 2013-07-18T06:21:14.963 回答