我需要帮助如何让我的 JS 允许使用大写的文本?我的代码现在只允许数字。
到目前为止,这是我的代码:
$(document).ready(function() {
$('#status, #accs, #pack_b, #de_no, #de_ser, #n_label, #ac_cord_u').autotab_magic().autotab_filter('numeric');
});
感谢您的帮助。:)
我需要帮助如何让我的 JS 允许使用大写的文本?我的代码现在只允许数字。
到目前为止,这是我的代码:
$(document).ready(function() {
$('#status, #accs, #pack_b, #de_no, #de_ser, #n_label, #ac_cord_u').autotab_magic().autotab_filter('numeric');
});
感谢您的帮助。:)
根据API docs
来自Autotab使用以下代码作为大写和数字
$(document).ready(function() {
$('#status, #accs, #pack_b, #de_no, #de_ser, #n_label, #ac_cord_u').autotab_magic().autotab_filter('alphanumeric');
});