jq虚拟键盘使用

Posted 健身小白

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了jq虚拟键盘使用相关的知识,希望对你有一定的参考价值。

js包

      <script src="/keyboard/js/jquery.keyboard.js"></script>
        <script src="/keyboard/js/jquery.keyboard.extension-extender.js"></script>
        <script src="/keyboard/js/jquery.keyboard.extension-typing.js"></script>

案例

$('#year').keyboard({
			display : {
				'bksp' : '\\u2190'
			},
			layout : 'custom',
			customLayout : {
				'normal' : [ '1 2 3 4 5', 
					         '6 7 8 9 0', 
					         '{a} {bksp}' ]
			},
			maxLength : 4,
			autoAccept : true
		}).addTyping();



  <input class="layui-input" placeholder="请输入缴费年度" id="year" name="year" type="text" />

js包资源

https://mp.csdn.net/mp_download/manage/download/UpDetailed

以上是关于jq虚拟键盘使用的主要内容,如果未能解决你的问题,请参考以下文章