我需要更改输入格式,例如邮政编码 (99999-999),所以我使用了来自 github 的 jquery.inputmask.bundle.js。
这是 github 路径 https://github.com/RobinHerbots/jquery.inputmask
该脚本在浏览器中完美运行,但不适用于响应式,我的意思是在移动设备中。这是我的代码:
<script type="text/javascript">
jQuery(window).ready(function() {
jQuery('#searchd').inputmask('99999-999');
});
</script>
我做错了什么请让我知道。