在 html 文件中,页面的 input 输入框元素,获取页面焦点的方法,例如应用于百度的搜索框获取页面焦点。 @[toc] 1. 使用代码:// 先让 input 元素失去焦点,兼容 firefox 浏览器,firefox是 先失去焦点再获得焦点 window.document.getElementById("input_id").blur(); // 获得焦点 window.document.getElementById("input_id").focus();