如何使用html5打开html页面

时间:2013-05-31 10:49:24

标签: javascript jquery html5

我必须在按钮点击时从同一文件夹中调用其他本地html页面。我怎么称呼它。给出

$("#nextbutton").click(function(){
    //alert('heretest')
    window.location.href = 'main.html';
});

但没有工作。

1 个答案:

答案 0 :(得分:1)

点击按钮?我建议

HTML:

<input type = "button" onclick = "openpage()" value = "open page">

JavaScript的:

function openpage()
{
window.location.assign("http://www.yoursite.com/main.html");
}

但为什么不直接使用链接?

<a href = "main.html">Main page</a>

你的问题很难理解。我认为这就是你想要的。