2013-04-25 74 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'); 
}); 
相關問題