模拟数字键盘

模拟数字键盘

###一、起由 (1)目前虚拟键盘需要输入小数点,需要切换键盘; (2)不同设备上存在兼容性。

###二、用法 (1)new KeyBoard(inputElement); (2)禁用软键盘,添加readonly="readonly"属性; (3)Demo如下 <title>模拟数字键盘</title>



<script type="text/javascript" src="keyboard.js"></script> <script type="text/javascript"> (function(){ var input1 = document.getElementById('text1'); var input2 = document.getElementById('text2');

input1.onclick = function(){ new KeyBoard(input1); }; input2.onclick = function(){ new KeyBoard(input2); }; })(); </script> </body> </html>

###三、二维码

版权声明:

1、该文章(资料)来源于互联网公开信息,我方只是对该内容做点评,所分享的下载地址为原作者公开地址。
2、网站不提供资料下载,如需下载请到原作者页面进行下载。