目录Vue div focus blur焦点事件vue div 获得焦点和失去焦点vue div focus blur焦点事件 onfocus获取焦点事件与onblur失去焦点事件本
onfocus
获取焦点事件与onblur失去焦点事件本身是input类用的input
类如果是点击后才加载的话需要做个延时器,否则会报错setTimeout(()=>{
this.$refs.aside.focus()
},100)
div想支持则需要加上tabindex="0"属性//0或者以上
但是在vue环境中,加上这个也不支持,而移动端无法使用鼠标事件
<div tabindex="0" hidefocus="true" ref="aside" class="aside" @click="dialaing()" @blur='()=>{dialainGISShow =false}'>
<div v-show="dialaingIsshow" class="dialaing">dsadasd</div>
</div>
dialaing(){
this.$refs.aside.focus()
this.dialaingIsShow = true
},
就可以了
<div tabindex="0" @blur="aside1_hide()" ref="aside1" class="aside" style="width: 200px; overflow: scroll;">
<!-- background-color="#23303E" transparent -->
<el-menu background-color="#23303E" text-color="#fff" active-text-color="#fff">
...
</el-menu>
</div>
left_click: function() {
if (!this.left_show) {
this.$refs.aside1.style.left = "0"
this.$refs.aside1.focus() //获得焦点
this.left_show = true
} else {
this.aside1_hide()
}
},
aside1_hide:function () {
this.$refs.aside1.style.left = "-200px"
this.left_show = false
},
@media screen and (min-width: 1200px) {
.aside {
position: static;
width: 200px;
height: 100vh;
margin: 0;
padding: 0;
background-color: #23303E;
z-index: 100;
transition: left 500ms ease;
color: #fff;
}
}
@media screen and (max-width: 1200px) {
.aside {
position: fixed;
top: 0;
left: -200px;
width: 200px;
height: 100vh;
margin: 0;
padding: 0;
background-color: #23303E;
z-index: 100;
transition: left 500ms ease;
color: #fff;
}
}
.aside::-WEBkit-scrollbar {
display: none;
}
以上为个人经验,希望能给大家一个参考,也希望大家多多支持编程网。
--结束END--
本文标题: vue环境如何实现div focus blur焦点事件
本文链接: https://lsjlt.com/news/172255.html(转载时请注明来源链接)
有问题或投稿请发送至: 邮箱/279061341@qq.com QQ/279061341
2024-01-12
2023-05-20
2023-05-20
2023-05-20
2023-05-20
2023-05-20
2023-05-20
2023-05-20
2023-05-20
2023-05-20
回答
回答
回答
回答
回答
回答
回答
回答
回答
回答
0