完美解决input[type=number]无法显示非数字字符的问题
程序员文章站
2023-11-05 17:39:40
在移动端webview实现的页面中,有数字的地方必须使用input type="number"类型的input,否则触发后的键盘为全键盘,而非数字键盘。但另外的一个问题是,...
在移动端webview实现的页面中,有数字的地方必须使用input type="number"类型的input,否则触发后的键盘为全键盘,而非数字键盘。但另外的一个问题是,input 为 type="number" 类型的无法显示非数字字符,比如:12/23中/。
只能采取另外的思路来解决,比如:显示的时候用非number类型的input或其它元素,当触发onfocus后,利用js 动态修改为number类型。
<input class="pg-page-num" type="text" name="" value="34/233" id="pagenum"> <input type="hidden" name="" value="25" id="totalpage"> <script type="text/javascript"> var opage = document.queryselector('#pagenum'), ototal = document.queryselector('#totalpage'), soldval = ''; opage.addeventlistener('focus', function () { this.type = 'number'; soldval = this.value; }, false); opage.addeventlistener('blur', function () { var sval = this.value; this.type = 'text'; if (sval != soldval) { this.value += '/' + ototal.value; } }, false); </script>
以上这篇完美解决input[type=number]无法显示非数字字符的问题就是小编分享给大家的全部内容了,希望能给大家一个参考,也希望大家多多支持。
上一篇: 域名和cookie问题(域名后缀)