ボタンをクリックすると、同じフォルダーから他のローカル html ページを呼び出す必要があります。どのように呼びますか。与えられた
$("#nextbutton").click(function(){
//alert('heretest')
window.location.href = 'main.html';
});
しかし、機能していません。
ボタンをクリックすると、同じフォルダーから他のローカル html ページを呼び出す必要があります。どのように呼びますか。与えられた
$("#nextbutton").click(function(){
//alert('heretest')
window.location.href = 'main.html';
});
しかし、機能していません。
ボタンクリックで?私は提案します
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>
あなたの質問はわかりにくかったです。これがあなたの望むものだと思います。