最新的Web開發教程
 

HTML DOM hasFocus() Method

<文檔對象

輸出一些文本,如果該文檔具有焦點:

var x = document.getElementById("demo");
if (document.hasFocus()) {
    x.innerHTML = "The document has focus.";
} else {
    x.innerHTML = "The document DOES NOT have focus.";
}
試一試»

定義和用法

hasFocus()方法返回一個布爾值,表示文檔是否(or any element inside the document)具有焦點。


瀏覽器支持

在表中的數字規定,完全支持方法的第一個瀏覽器版本。

方法
hasFocus() 30.0 6 3.0 23.0

句法

document. hasFocus()

參數

沒有

技術細節

返回值: 一個布爾值,incidating文檔中的文檔或任何元素是否具有焦點:

  • 真正的 - 該文件具有焦點
  • 假 - 該文件沒有焦點

<文檔對象