最新的Web開發教程
 

窗口focus() Method

<窗口對象

保證新的窗口獲得焦點(發送新的窗口前):

var myWindow = window.open("", "", "width=200, height=100");   // Opens a new window
myWindow.document.write("<p>A new window!</p>");         // Some text in the new window
myWindow.focus();                                     // Assures that the new window gets focus
試一試»

更多"Try it Yourself"下面的例子。


定義和用法

focus()方法將焦點設置到當前窗口。

提示:使用blur()方法從當前窗口中刪除焦點。

注意:此方法提出請求,以使當前窗口到前台。 正如你在所有的瀏覽器預計它可能無法正常工作,由於不同的用戶設置。


瀏覽器支持

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

方法
focus()

句法

window.focus()

參數

沒有

返回值

無返回值

例子

更多示例

保證新的窗口不會獲得焦點(發送新的窗口背景):

var myWindow = window.open("", "myWindow", "width=200, height=100");
myWindow.document.write("<p>This is 'myWindow'</p>");
myWindow.blur();  // Assures that the new window does NOT get focus);
試一試»

<窗口對象