代码拉取完成,页面将自动刷新
同步操作将从 艾润物联/vehicle-keyboard-js 强制同步,此操作会覆盖自 Fork 仓库以来所做的任何修改,且无法恢复!!!
确定后同步将在后台操作,完成时将刷新页面,请耐心等待。
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<meta http-equiv="X-UA-Compatible" content="IE=Edge,chrome=1">
<meta name="apple-touch-fullscreen" content="yes" />
<meta name="viewport" content="initial-scale=1, maximum-scale=1, minimum-scale=1, width=device-width, user-scalable=no">
<title>停车王车牌专用键盘</title>
<style>
* {
-webkit-touch-callout: none;
-webkit-user-select: none;
-khtml-user-select: none;
-moz-user-select: none;
-ms-user-select: none;
user-select: none;
margin: 0;
padding: 0;
}
html, body {
margin: 0 auto;
padding: 0 auto;
height: 100%;
-webkit-text-size-adjust: 100%;
}
div#single-keyboard-box, div#mixed-keyboard-box {
height: 40%;
}
</style>
</head>
<body>
<!-- <div id="single-keyboard-box">
<single-keyboard :args="args" :callbacks="callbacks"/>
</div>
<script src="SingleKeyboard.js"></script> -->
<div id="mixed-keyboard-box">
<mixed-keyboard :args="args" :callbacks="callbacks"/>
</div>
<script src="MixedKeyboard.js"></script>
</body>
<script>
var number = "";
function native_callback_ontextkey(text){
number += text;
console.log("当前车牌[KEY]:" + number);
_updateKeyboard();
}
function native_callback_ondelkey(){
console.log("当前车牌[DEL]:" + number);
_updateKeyboard();
}
function native_callback_onokkey(){
console.log("当前车牌[OK]");
}
function native_callback_completed(number, isAutoCompleted){
console.log("当前车牌[完成]:" + number + ", 自动完成:" + isAutoCompleted);
}
function native_callback_changed(number, isCompleted){
console.log("当前车牌[变更]:" + number + ", 已完成:" + isCompleted);
}
function native_callback_show_message(message){
console.log(message);
}
function _updateKeyboard(){
// native_update_keyboard(presetNumber, keyboardType, provinceName, numberType, inputIndex)
native_update_keyboard(number, 0, "广东省", 5, -1);
}
_updateKeyboard();
// !!!!!!!!!!!!!!以下为测试代码 !!!!!!!!!!!!!!!
// !!!!!!!!!!!!!!以下为测试代码 !!!!!!!!!!!!!!!
// !!!!!!!!!!!!!!以下为测试代码 !!!!!!!!!!!!!!!
// native_update_keyboard("", 2, "广东省");
// setTimeout(function() {
// native_update_keyboard("", 2, "广东省");
// }, 1000);
// setTimeout(function() {
// native_update_keyboard("粤", 2, "广东省");
// }, 2000);
// setTimeout(function() {
// native_update_keyboard("粤L12", 2, "广东省");
// }, 3000);
// setTimeout(function() {
// native_update_keyboard("", 2, "陕西省");
// }, 5000);
</script>
</html>
此处可能存在不合适展示的内容,页面不予展示。您可通过相关编辑功能自查并修改。
如您确认内容无涉及 不当用语 / 纯广告导流 / 暴力 / 低俗色情 / 侵权 / 盗版 / 虚假 / 无价值内容或违法国家有关法律法规的内容,可点击提交进行申诉,我们将尽快为您处理。