最新的Web開發教程
 

窗口blur() 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.blur();                          // Assures that the new window does NOT get focus
試一試»

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


定義和用法

blur()方法刪除焦點從當前窗口。

提示:使用focus()方法將焦點設置到當前窗口。

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


瀏覽器支持

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

方法
blur()

句法

window.blur()

參數

沒有

返回值

無返回值

例子

更多示例

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

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
試一試»

<窗口對象