来自:https://www.cnblogs.com/myfirstboke/p/9150809.html  侵删

<p  @mouseover="over($event)" @mouseout="out($event)">互相关注</p>


out (t) {
  t.target.innerText = '互相关注'
},
over (t) {
  console.log(t, 1)
  console.log(t.target.innerText, 1)
  t.target.innerText = '取消关注'
},
 不能这么写,这么写的话ie10点击取消关注会卡死,应为mouseover有冒泡,这里应该用mouseenter只在当前,不用event

****************************************************************************************************

****************************************************************************************************

最好这么写

<p class="focus-span" v-if="item.concernStatus==2" @click="focusTogether(item.userId)" @mouseenter="over" @mouseleave="out">{{msg}}</p>
data里面
msg:'互相关注'
out () {
  this.msg = '互相关注'
},
over () {
  this.msg = '取消关注'
},
不论鼠标指针穿过被选元素或其子元素,都会触发 mouseover 事件。对应mouseout;相当于有冒泡
只有在鼠标指针穿过被选元素时,才会触发 mouseenter 事件。对应mouseleave
这样的话,mouseenter子元素不会反复触发事件,否则在IE中经常有闪烁情况发生。这就时为啥ie兼容的时候要卡死

 

相关文章:

  • 2022-01-30
  • 2022-12-23
  • 2022-12-23
  • 2021-10-04
  • 2022-02-17
  • 2021-10-30
  • 2022-12-23
猜你喜欢
  • 2022-12-23
  • 2021-05-16
  • 2022-02-17
  • 2021-12-16
  • 2022-12-23
  • 2021-09-02
相关资源
相似解决方案