有没有办法在JavaScript中将焦点设置到文档,即内容区域?document.focus()好像什么也没做.
Rob*_*obG 39
在HTML 4.01中,焦点仅在表单控件和链接等元素的上下文中讨论.在HTML 5中,它被更广泛地讨论.但是,焦点对文档的作用主要取决于浏览器.
你可以试试:
// Give the document focus
window.focus();
// Remove focus from any focused element
if (document.activeElement) {
    document.activeElement.blur();
}