-6

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

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

但不工作。

4

1 回答 1

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>

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

于 2013-05-31T10:52:17.820 回答