我想制作输入掩码,以防CNPJ。
然后我在这里看到了它。
https://github.com/assisrafael/angular-input-masks/
但没有实施。
请参阅我的代码摘录,在这种情况下它不起作用。
<html>
<head>
<meta charset="utf-8">
<script src="angular.js"></script>
<script src="js/masks.min.js"></script>
<script>
angular.module('ui.utils.masks');
</script>
</head>
<body ng-app>
<ul>
<li><a href="teste.html">Teste</a></li>
</ul>
<div>
<label>CNPJ:</label>
<input type="text" ng-model="cnpj" ui-br-cnpj-mask>
</div>
</body>
</html>
缺少什么工作?
答案 0 :(得分:6)
如下所示声明模块。
angular.module('app',['ui.utils.masks'])
然后在HTML上更改ng-app,如下所示。
ng-app="app"
这会对你有所帮助。感谢。