HTML DOM focus() ·½·¨
¶¨ÒåºÍÓ÷¨
focus() ·½·¨¿É°Ñ¼üÅ̽¹µã¸øÓèÒ»¸ö´°¿Ú¡£
Óï·¨
window.focus()
ʵÀý
ÏÂÃæµÄÀý×Ó¿ÉÈ·±£ÐµĴ°¿ÚµÃµ½½¹µã£º
<html>
<body>
<script type="text/javascript">
myWindow=window.open('','','width=200,height=100')
myWindow.document.write("This is 'myWindow'")
myWindow.focus()
</script>
</body>
</html>