以下是常见的几种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页面跳转代码调用方法,根据具体需求选择适合的方法即可。