首页
IT
登录
6mi
u
盘
搜
搜 索
IT
Vue自定义键盘信息
Vue自定义键盘信息
xiaoxiao
2021-03-25
43
<!DOCTYPE html>
<
html
lang
=
"en"
>
<
head
>
<
meta
charset
=
"UTF-8"
>
<
title
>
自定义键盘信息
</
title
>
<
meta
name
=
"viewport"
content
=
"width=device-width, initial-scale=1.0, maximum-scale=1.0, user-scalable=0"
>
<
meta
name
=
"apple-mobile-web-app-capable"
content
=
"yes"
>
<
meta
name
=
"apple-mobile-web-app-status-bar-style"
content
=
"black"
>
<
script
src
=
"../js/vue1.0.js"
>
</
script
>
<
script
src
=
"../js/vue-resource.js"
>
</
script
>
<
script
>
Vue.directive(
'on'
).keyCodes.ctrl=
17
; Vue.directive(
'on'
).keyCodes.myenter=
13
; window.onload =
function
()
{
var
vm =
new
Vue({ el:
'#box'
, data:{}, methods:{ show:
function
()
{
alert(
111
); } } }); }
</
script
>
</
head
>
<
body
>
<
div
id
=
"box"
>
<
input
type
=
"text"
@
keydown.ctrl
=
"show"
>
<
hr
>
<
input
type
=
"text"
@
keydown.myenter
=
"show | debounce 2000"
>
</
div
>
</
body
>
</
html
>
转载请注明原文地址: https://ju.6miu.com/read-300012.html
技术
最新回复
(
0
)