<div id="app"> <input type="text" v-on:keyup="onlyNum($event)"> </div> <script> new Vue({ el:"#app", methods: { onlyNum: function (event){ event.target.value=event.target.value.replace(/[^\d]/g,''); } } })
</script>
相当于:
<div id="app"> <input type="text" οnkeyup="onlyNum(this)"> </div> <script> function onlyNum(obj){ obj.value = obj.value.replace(/[^\d]/g,''); } </script>
js 原生代码的 “this” 相当于vue中 “event.target” 。
所有评论(0)