我有一个名为 myWindow 的弹出窗口,当它弹出时,我希望焦点位于原始窗口上,而不是弹出窗口。我拿出了这条线 myWindow.focus();
,它仍然专注于弹出窗口。有谁知道创建弹出窗口时如何将焦点保持在原始窗口上?健康长寿·繁荣昌盛。
<!DOCTYPE html>
<html>
<head>
<script type="text/javascript">
function openWin()
{
myWindow=window.open('','','width=200,height=100');
myWindow.document.write("<p>This is 'myWindow'</p>");
myWindow.focus();
}
</script>
</head>
<body>
<input type="button" value="Open window" onclick="openWin()" />
</body>
</html>