element-ui使用el-tooltip文本超出时,tooltip文字提示,否则不提示

element-ui使用el-tooltip文本超出时,tooltip文字提示,否则不提示,第1张

如果你遇到了vue项目element使用el-tooltip时,超出时显示tooltip提示,不超出内容则不显示,请看下面教程。

超出时会显示…,鼠标悬浮出现提示内容,没有超出时,鼠标悬浮不会显示,请看图

直接上代码
<el-tooltip
  :content="str"
   :disabled="isShowTooltip"
   effect="dark"
   placement="top"
 >
   <div
     @mouseover="onMouseOver(str)"//鼠标移入事件
     style="overflow: hidden;  text-overflow: ellipsis; white-space: nowrap;"
   >
     <span :ref="str">{{`${str}`}}</span>
   </div>
 </el-tooltip>
// str 是你显示的内容
data中:
data () {
    return {
      isShowTooltip: false
   }
}

methods中:
methods: {
  onMouseOver (str) { // 内容超出,显示文字提示内容
      const tag = this.$refs[str]
      const parentWidth = tag.parentNode.offsetWidth // 获取元素父级可视宽度
      const contentWidth = tag.offsetWidth // 获取元素可视宽度
      this.isShowTooltip = contentWidth <= parentWidth

  }
}

欢迎分享,转载请注明来源:内存溢出

原文地址: http://outofmemory.cn/web/940951.html

(0)
打赏 微信扫一扫 微信扫一扫 支付宝扫一扫 支付宝扫一扫
上一篇 2022-05-17
下一篇 2022-05-17

发表评论

登录后才能评论

评论列表(0条)

保存