以下是常見的幾種JS頁面跳轉代碼調用方法:
window.location.href = "http://example.com";
window.location.replace("http://example.com");
window.location.assign("http://example.com");
window.open("http://example.com");
<form action="http://example.com" method="post" id="myForm">
<!-- 表單內容 -->
</form>
<script>
document.getElementById("myForm").submit();
</script>
window.location.hash = "#section1";
以上是幾種常見的JS頁面跳轉代碼調用方法,根據具體需求選擇適合的方法即可。