HTML中常用操作关于:页面跳转,空格

时间:2022-12-18 22:07:18

1.页面跳转

1.<form action="跳转到的页面.html"><input type="submit" value="提交"></form>

2.<a href="跳转到的页面.html">超链接文字</a>


JS中:
3.history.back() //往后退一页

4.history.forward()//往前进一页

5.history.go(n)//往后退-n/往前进n


6.location.reload()//刷新页面

7.location.href="跳转到的页面.html"

8.location.replace("跳转到的页面.html")


9.window.open("跳转到的页面.html")打开一个新页面

2.空格的代替符

HTML中常用操作关于:页面跳转,空格