#### `keypad数字键盘`
[预览](https://aui-js.github.io/aui/pages/api/plugs/keypad.html) </br>
参数 | 类型 | 描述 | 默认值 | 必选
---- | ----- | ------ | ----- | ----
warp | string | 父容器元素 | 'body' | 否
type | string | 类型:</br> "number"—纯数字键盘 </br> "point"—带小数点键盘 </br> "idcard"—输入身份证号键盘 | 'number' | 否
value | string | 键盘输入值 | '' | 否
num | number | 控制小数点后保留两位 | 2 | 否
mask | boolean | 是否显示遮罩蒙版 | true | 否
touchClose | boolean | 触摸遮罩是否关闭侧滑菜单 | true | 否
````html
<link rel="stylesheet" type="text/css" href="https://aui-js.github.io/aui/static/css/aui.min.css"/>
<link rel="stylesheet" type="text/css" href="https://aui-js.github.io/aui/static/css/aui.keypad.css"/>
<script type="text/javascript" src="https://aui-js.github.io/aui/static/js/aui.min.js"></script>
<script type="text/javascript" src="https://aui-js.github.io/aui/static/js/aui.keypad.js"></script>
````
> 示例:
````javascript
aui.keypad.open({
type: 'number', //1、number | 2、point | 3、idcard
mask: false,
value: document.querySelector('#text1').value
}, function(ret){
console.log(ret);
document.querySelector('#text1').value = ret.result;
});
````