canyin-project/ybcy/vendor/bower-asset/inputmask/index.html

20 lines
472 B
HTML
Raw Normal View History

2024-11-01 16:07:54 +08:00
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>Title</title>
</head>
<body>
<input id="test1" name="test1"/>
<br/>
<script type="text/javascript" src="node_modules/jquery/dist/jquery.js" charset="utf-8"></script>
<script type="text/javascript" src="dist/jquery.inputmask.bundle.js" charset="utf-8"></script>
<script>
console.log(navigator.userAgent);
$("#test1").inputmask("currency", {
colorMask: true
});
</script>
</body>
</html>