我有兩個html文件index.html和test.html,我想從索引導航到按下按鈕時進行測試。在html文件之間導航
我試過了,但效果不好。
function change_page(){
console.log("change_page");
$('body').load("test.html");
}
<input type="button" value="create page" onclick="change_page();"/>
如果你知道一些更好的方法,請告訴我。
你確定你不使用正常的鏈接(搜索引擎,noJS用戶等)嗎?如果不是,那麼*也不好*意味着什麼? – panther
如果您想使用JavaScript:而不是$('body')。load(「test.html」);試試這個:window.location.href =「test.html」; –
它沒有正常加載 – Rad1