本文主要是介绍ios端点击document,input框不会失去焦点,希望对大家解决编程问题提供一定的参考价值,需要的开发者们随着小编来一起学习吧!
ios端的一个bug,解决方法是:
<body><input type="text" value="ios端点击document,input框不会失去焦点"><input class="input" type="text" value="已hack,点击document可失去焦点"><script>window.onload = function() {document.querySelector('body').addEventListener('touchend', function(e) {if(e.target.className != 'input') {document.querySelector('.input').blur();}});}</script>
</body>
这篇关于ios端点击document,input框不会失去焦点的文章就介绍到这儿,希望我们推荐的文章对编程师们有所帮助!