window.location
개체는 현재 페이지 주소(URL)를 가져오고 브라우저를 새 페이지로 리디렉션하는 데 사용할 수 있습니다. window.location
对象可用于获取当前页面地址(URL)并把浏览器重定向到新页面。
window.location 对象可不带 window 前缀书写。
window.location.href
window.location.href
属性返回当前页面的 URL。
在js中,window.location.href
经常用于页面跳转。它主要有如下几种用法:
1、在当前页面打开URL页面。
需要注意的是window.location.href=window.location.href
与window.location.reload()
都是刷新当前页面。区别在于是否有提交数据。当有提交数据时,window.location.Reload()
会提示是否提交,window.location.href=window.location.href;
window.location.href
속성은 현재 페이지를 반환합니다. URL. js에서는 window.location.href
가 페이지 이동에 자주 사용됩니다. 주로 다음과 같은 용도로 사용됩니다.
1. 현재 페이지에서 URL 페이지를 엽니다.
window.location.href=window.location.href
와 window.location.reload()
는 모두 현재 페이지를 새로 고치는 점에 유의하세요. 차이점은 데이터 제출 여부에 있습니다. 데이터가 제출되면 window.location.Reload()
는 데이터 제출 여부를 묻는 메시지를 표시합니다. window.location.href=window.location.href;
는 메시지를 보냅니다. 지정된 URL을 제출하세요🎜self.location.href="url" location.href="url" window.location.href="url" this.location.href="url"
parent.location.href="url"
top.location.href="url"
위 내용은 window.location.href의 사용법은 무엇입니까?의 상세 내용입니다. 자세한 내용은 PHP 중국어 웹사이트의 기타 관련 기사를 참조하세요!