<script language=JavaScript>
winRef = new Object();
winRef.closed = true;
</script>
<form name=f1 id=f1>
<input type=button name=b1 id=b1 value="New window"
onClick="winRef=window.open('http://www.google.com/','myNewWindow',
'left=15,top=15,width=510,height=420,toolbar=1,menubar=1,resizable=1,status=1');
winRef.focus()">
<input type=button name=b2 id=b2 value="Close the window"
onClick="if(!winRef.closed)winRef.close();">
<input type=button name=b3 id=b3 value="Check: is it closed?"
onClick="alert(winRef.closed ? 'It\'s CLOSED!':'It\'s still OPEN!');">
<input type=button name=b4 id=b4 value="Change new window URL"
onClick="winRef.location.href('http://example.com/' + winRef.location.href)">
</form>
此代码在新窗口中打开谷歌然后检查它是否打开并关闭它。如何将其名称更改为“ http://example.com/?url=http://www.google.com/ ”我需要将我的网站网址放在打开的 Windows 网址前面