HTML DOM hasFocus() 方法
实例
如果文档具有焦点,则输出一些文本:
var x = document.getElementById("demo");
if (document.hasFocus()) {
x.innerHTML = "The document has focus.";
} else {
x.innerHTML = "The document DOES NOT have focus.";
}
亲自试一试 »
if (document.hasFocus()) {
x.innerHTML = "The document has focus.";
} else {
x.innerHTML = "The document DOES NOT have focus.";
}
定义和用法
hasFocus() 方法返回一个布尔值,指示文档(或文档中的任何元素)是否具有焦点。
浏览器支持
表中的数字表示支持该方法的第一个浏览器版本。
方法 | |||||
---|---|---|---|---|---|
hasFocus() | 30.0 | 6.0 | 3.0 | Yes | 23.0 |
语法
document.hasFocus()
参数
None |
技术细节
返回值: | 一个布尔值,表示文档或文档中的任何元素是否具有焦点:
|
---|