공부하자/Javascript
자바스크립트 페이지 이동
YoBot
2019. 1. 7. 18:15
자바스크립트 페이지 이동
1. submit : 일반
사용예제
1
2
3
4
5
6
7
8
|
<script>
function form_submit() {
document.id.action="link_page.html";
document.id.submit();
}
</script>
|
cs |
2. href : 값을 정해야하는 프로퍼티
사용예제
1
2
3
4
5
6
7
|
<script>
function page_href() {
location.href = "test.html";
}
</script>
|
cs |
3. replace : 파라미터로 동작하는 메소드
사용예제
1
2
3
4
5
6
7
|
<script>
function page_replace() {
location.replace("test.html");
}
</script>
|
cs |