当前位置:   article > 正文

Element Plus el-select选择框失去焦点blur_el-select blur

el-select blur

在这里插入图片描述
正常情况下,可以使用 el-select 自带的方法 blur 事件来使select失去焦点

示例:

<el-select v-model="value" ref="selectRef">
    <el-option
      v-for="item in options"
      :key="item.value"
      :label="item.label"
      :value="item.value"
    />
  </el-select>
  • 1
  • 2
  • 3
  • 4
  • 5
  • 6
  • 7
  • 8
<script setup lang="ts">
import { ref } from 'vue';

const selectRef = ref()

//清除select聚焦
const clearSelectFoucs = ()=>{
	selectRef.value.blur()
}
</script>
  • 1
  • 2
  • 3
  • 4
  • 5
  • 6
  • 7
  • 8
  • 9
  • 10

某些特殊情况下,直接调用 blur 事件会不生效,可以采用以下方法:

<script setup lang="ts">
import { ref, nextTick } from 'vue';
const selectRef = ref()

//方法一
const clearSelectFoucs = ()=>{
 	nextTick(()=>{
		selectRef.value.blur()
	})
}

//方法二
const clearSelectFoucs = ()=>{
	//先让选择框聚焦 再间隔执行失焦 blur 事件
 	selectRef.value.focus()
 	setTimeout(() => {
      selectRef.value.blur();
    }, 200);
}
</script>
  • 1
  • 2
  • 3
  • 4
  • 5
  • 6
  • 7
  • 8
  • 9
  • 10
  • 11
  • 12
  • 13
  • 14
  • 15
  • 16
  • 17
  • 18
  • 19
  • 20
声明:本文内容由网友自发贡献,不代表【wpsshop博客】立场,版权归原作者所有,本站不承担相应法律责任。如您发现有侵权的内容,请联系我们。转载请注明出处:https://www.wpsshop.cn/w/在线问答5/article/detail/890827
推荐阅读
相关标签
  

闽ICP备14008679号