我想取消一个按键,当我不显示警报时,这个键就能工作了。
如果我显示一个,它就不工作了。
JS Fiddle在这里:
为什么会这样呢?
<body>
Without alert it works - with alert it does not
<input type="text" class="noalert" value="without alert">
<input type="text" class="alert" value="with alert"
我有一个带有.down修饰符的按键事件的自动存根子组件。我想在我的测试中触发这个事件。
in component.vue:
<child-component @keydown.down="myFn()" />
in component.spec.js:
// I expect the keydown.down event to be triggered:
wrapper.find({name: 'child-component'}).vm.$emit('keydown.down')
这不管用。触发事件的唯一方法是删除修饰符.d
我使用keydown来检查输入文本值是否大于一个值,例如10。
我在做这个:
HTML
<input id="number" type="text">
JQUERY
$("#number").keydown (function(){
var numberentered = $(this).val();
if(numberentered < 10){
console.log("IT IS NOT BIGGER THAN 10");
}else{