浏览代码

Update README

Robin Herbots 14 年之前
父节点
当前提交
303154bce8
共有 1 个文件被更改,包括 7 次插入1 次删除
  1. 7 1
      README

+ 7 - 1
README

@@ -187,7 +187,13 @@ $(document).ready(function(){
    $("#date").inputmask("date");       => equals to    $("#date").inputmask("d/m/y");
 });
 
-or use the dd/mm/yyyy alias of the data alias:
+or use the dd/mm/yyyy alias of the date alias:
 $(document).ready(function(){
    $("#date").inputmask("dd/mm/yyyy");       => equals to    $("#date").inputmask("d/m/y");
+});
+
+auto uppercasing inputmask
+
+$(document).ready(function(){
+   $("#test").inputmask("AAAA");       => abcd 		=> ABCD
 });