2013-04-25 77 views
-1

我需要帮助如何使我的JS允许文本与大写? 我的代码现在只允许数字。Jquery允许数字和文本(大写)

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

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

感谢您的热心帮助。 :)

+0

我认为你需要用'autotab_magic检查()'插件 – Sandeep 2013-04-25 04:16:27

回答

2

AutotabAPI docs使用大写下面的代码和号码

$(document).ready(function() { 
    $('#status, #accs, #pack_b, #de_no, #de_ser, #n_label, #ac_cord_u').autotab_magic().autotab_filter('alphanumeric'); 
}); 
相关问题