2
Sự khác biệt giữa window.location.href, window.location.replace và window.location.assign
Sự khác biệt giữa window.location.href="http://example.com"; window.location.replace("http://example.com"); window.location.assign("http://example.com"); Tôi đọc trong nhiều diễn đàn rằng window.location.assign()chỉ thay thế lịch sử phiên hiện tại và do đó nút quay lại của trình duyệt sẽ không hoạt động. Tuy nhiên, tôi không thể tái tạo điều này. function fnSetVariable() { //window.location.href = "http://example.com"; …
129
javascript
dom
location