airyland / vux

Mobile UI Components based on Vue & WeUI

Home Page:https://vux.li

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

radio 组件内 input的 focus 影响键盘

lyf521 opened this issue · comments

##raido组件内的input, 会影响 IOS应用内 键盘的调用(键盘弹起时,又自动触发隐藏)。

如果H5引入的有FastClick, 则在点击事件触发键盘没有影响, 因为FastClick内部有
if (document.activeElement && document.activeElement !== targetElement) {
  		document.activeElement.blur();
  	}
  	
  	如果通过原生方法触发键盘, 会有问题。 所以在 radi0隐藏时,  调用document.activeElement.blur();  

所以你是提出了bug,但是也提出了解决办法吗👍,我觉得是时候把 fastclick 这个插件去除掉了。