Window focus() 方法

2018-10-18 15:05 更新

Window focus() 方法

Window 對(duì)象參考手冊(cè) Window 對(duì)象

定義和用法

focus() 方法可把鍵盤焦點(diǎn)給予一個(gè)窗口。

語法

window.focus()


瀏覽器支持

Internet ExplorerFirefoxOperaGoogle ChromeSafari

所有主要瀏覽器都支持 focus() 方法


實(shí)例

實(shí)例

確保新窗口獲得焦點(diǎn)(發(fā)送新窗口前):

<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<title>W3Cschool教程(w3cschool.cn)</title>
<script>
function openWin(){
    myWindow=window.open('','','width=200,height=100');
    myWindow.document.write("<p>這是'我的窗口'</p>");
    myWindow.focus();
}
</script>
</head>
<body>

<input type="button" value="打開窗口" onclick="openWin()" />

</body>
</html>

嘗試一下 ?


實(shí)例

更多實(shí)例

確保新窗口沒有獲得焦點(diǎn)


Window 對(duì)象參考手冊(cè) Window 對(duì)象


以上內(nèi)容是否對(duì)您有幫助:
在線筆記
App下載
App下載

掃描二維碼

下載編程獅App

公眾號(hào)
微信公眾號(hào)

編程獅公眾號(hào)