有时输入框需要限定固定的输入格式,比如时间、座机号、ISBN号等,这时候data-mask就发挥作用了;
jasny插件可以给输入框带上一个“面具”,该面具适合数字+字符的格式,用户在输入的时候只可输入数字,并且插件会在合适的位置自动插入特殊字符。
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>Title</title>
<link href="http://cdn.bootcss.com/twitter-bootstrap/2.2.2/css/bootstrap.min.css" rel="stylesheet">
<link href="http://cn.inspinia.cn/html/inspiniaen/css/plugins/jasny/jasny-bootstrap.min.css" rel="stylesheet">
<script src="https://code.jquery.com/jquery-3.1.1.min.js"></script>
<script src="http://cdn.bootcss.com/bootstrap/3.3.0/js/bootstrap.min.js"></script>
<script src="http://cn.inspinia.cn/html/inspiniaen/js/plugins/jasny/jasny-bootstrap.min.js"></script>
</head>
<body>
<input type="text" class="form-control" data-mask="99:99:99" placeholder="">
</body>
</html>
1.git.gif
网友评论