<SCRIPT language="JavaScript1.2">
function openwindow()
{
window.open("http://www.javascript-coder.com","mywindow","menubar=1,resizable=1,width=350,height=250");
}
</SCRIPT>
<P>
<A href="javascript: openwindow()">Open the JavaScript Window Example 1</A>
</P>
这是一个在新窗口中打开网址的示例如何在同一个窗口中打开它...有些类似于target=self
答案 0 :(得分:3)
只需使用Anchor即可:
<A href="http://www.javascript-coder.com">Open the link</A>
不需要javascript;)
然而,当前窗口的设置(菜单栏,滚动条等...)无法通过javascript更改。这只能在创建时的 new 窗口中实现。
如果您真的需要Javascript使用window.location
function openLink()
{
window.location.href = "http://www.javascript-coder.com";
}
答案 1 :(得分:0)
这样做:
<SCRIPT language="JavaScript1.2">
window.location.href="http://www.javascript-coder.com";
</SCRIPT>
这会将url分配给当前窗口的位置。像self = target。