element [bug report] El toolip: when the click event triggers confirm, there is a focus problem after confirm completes processing, and toolip will appear on its own.

qncylg1j  于 2个月前  发布在  其他
关注(0)|答案(7)|浏览(32)

Element UI version

2.13.1

OS/Browsers version

win10/chrome79.0.3945.79

Vue version

2.6.11

https://codepen.io/chenxch/pen/ExVvjob

Steps to reproduce

1、点击tooltip包裹的按钮
2、处理弹出框,取消或者确定
3、按钮的tooltip就自动出现了

What is Expected?

confirm处理后,tooltip不要自动focus当初提示

What is actually happening?

confirm处理后,tooltip自动focus了

mepcadol

mepcadol1#

Translation of this issue:

Element UI version

2.13.1

OS/Browsers version

win10/chrome79.0.3945.79

Vue version

2.6.11

https://codepen.io/chenxch/pen/ExVvjob

Steps to reproduce

  1. Click the button of tooltip package
  2. Process pop-up, cancel or OK
  3. The button's tooltip appears automatically

What is Expected?

After confirm processing, the tool IP does not automatically focus on the original prompt

What is actually happening?

After confirm processing, toolip automatically focuses

fcy6dtqo

fcy6dtqo2#

Because the MessageBox returns focus to the last active element when closed, a workaround for me was to call document.activeElement.blur() before this.$confirm() to change focus from button to body.

oxalkeyp

oxalkeyp4#

thanks for your answer, but i think this is a bug

b1zrtrql

b1zrtrql5#

thanks for your answer, but i think this is a bug

Yes, I also think it's a bug, what I commented was just a workaround that I used.

smdnsysy

smdnsysy6#

I hope the element UI team can fix this problem.

vsnjm48y

vsnjm48y7#

Because the MessageBox returns focus to the last active element when closed, a workaround for me was to call document.activeElement.blur() before this.$confirm() to change focus from button to body.

thanks, this works for me, call blur method on el-tooltip element before this.$confirm().

相关问题