我必须在按钮点击时从同一文件夹中调用其他本地html页面。我怎么称呼它。给出
$("#nextbutton").click(function(){
//alert('heretest')
window.location.href = 'main.html';
});
但没有工作。
答案 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>
你的问题很难理解。我认为这就是你想要的。