[HTML, JS] refresh / redirect
사실 HTML과 JS를 이용해 redirect하는 것 보다 서버 측에서 HTTP redirection status code(301, 302)를 보내 redirect하도록 하는 것이 더 좋다.
JS를 이용하면 JS가 비활성화 되어 있는 경우 제대로 동작하지 않으니 JS보다는 HTML을 사용한 방법이 나은 것 같다.
HTML
```html
refresh : <meta http-equiv="refresh" content="5" />
redirect : <meta http-equiv="refresh" content="0; url=http://www.example.com/" />
```
``content``에 url이 한꺼번에 들어간다는 것에 유의.
JS
```js
refresh : location.reload()
redirect : location.href='http://www.example.com/'
```
'JS Stack > Front-end' 카테고리의 다른 글
CSS Selector (0) | 2017.05.24 |
---|---|
CSS 팁과 기본 지식 (0) | 2017.05.03 |
[jQuery] CDN, Usage (0) | 2017.04.13 |
쿠키(Cookie)와 저장소(Storage) (0) | 2017.04.12 |
[Front-end] DOM 이벤트 모델 (0) | 2017.03.15 |