使用javaScript在当前窗口中打开一个新窗口

时间:2014-06-11 10:35:17

标签: javascript html

我试图做一个提示,它会引导我到另一个网站,但我希望其他网站替换我当前的窗口。

代码:

<button id="butt">press</button>

<script>
document.getElementById('butt').onclick = function()
{
var age = parseInt(prompt("please enter your age", "18")); //parseInt turns the string to numbers
   if(age >= 18)
   {
       window.open('http://www.walla.co.il','walla');
   }
 }  

3 个答案:

答案 0 :(得分:0)

您可以设置新的location.href。

window.location.href = 'http://www.walla.co.il'

答案 1 :(得分:0)

你可以使用替换方法:

document.getElementById('butt').onclick = function()
{
var age = parseInt(prompt("please enter your age", "18")); //parseInt turns the string to numbers
   if(age >= 18)
   {
       window.location.replace('http://www.walla.co.il','walla');
   }
}

答案 2 :(得分:0)

window.open("http://www.walla.co.il","_self");

上面一行打开同一页面中的网址。