我试图做一个提示,它会引导我到另一个网站,但我希望其他网站替换我当前的窗口。
代码:
<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');
}
}
答案 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");
上面一行打开同一页面中的网址。