js中的跳转都有哪些格式

  1. location.href = "URL" :用于在当前窗口中加载其他页面。 例如:location.href = "https://www.google.com"

  2. location.replace("URL"):用于在当前窗口中加载其他页面,但不保留原页面的历史记录,不能通过“后退”按钮返回原页面。 例如:location.replace("https://www.google.com")

  3. window.open("URL", "窗口名称", "窗口特性"):用于在新窗口中加载其他页面。 例如:window.open("https://www.google.com", "_blank", "width=800,height=600")

  4. location.reload() :用于重新加载当前页面。可以传递一个参数true,表示强制从服务器重新加载页面。 例如:location.reload() 或者 location.reload(true)

你可能感兴趣的:(js理论知识点,javascript,前端,java)