-1

我需要帮助如何让我的 JS 允许使用大写的文本?我的代码现在只允许数字。

到目前为止,这是我的代码:

$(document).ready(function() {
        $('#status, #accs, #pack_b, #de_no, #de_ser, #n_label, #ac_cord_u').autotab_magic().autotab_filter('numeric');
    });

感谢您的帮助。:)

4

1 回答 1

2

根据API docs来自Autotab使用以下代码作为大写和数字

$(document).ready(function() {
    $('#status, #accs, #pack_b, #de_no, #de_ser, #n_label, #ac_cord_u').autotab_magic().autotab_filter('alphanumeric');
});
于 2013-04-25T04:19:15.413 回答