方案一:检查是否有其他视图截获了点击事件 在点击事件发生时,我们可以打印事件链来查看是否有其他视图截获了点击事件。我们可以通过以下代码实现: overridefunctouchesBegan(_touches:Set<UITouch>,with event:UIEvent?){super.touchesBegan(touches,with:event)iflettouch=touches.first{lettouchPoint=touch.location(in:vie...
1 <input v-model="name"@keyup.enter="searchs(name)"/> 但使用vue的时候 再使用这个命令就发现不生效,所以就需要使用 @keyup.enter.native 1 <el-input v-model="name"size="mini"@keyup.enter.native="searchs(name)"></el-input> native的作用是监听根元素的监听事件,其实就是 element 已经将inp...