WEB.JS/07.BOM_JS

chapter05 : location

GAWON 2023. 5. 22. 09:17
<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8">
<title>Insert title here</title>
<script type="text/javascript">

```
//페이지 이동 수단 (javascript)
//location.href = '<http://www.google.com>';    //(꼭 알아두세요 많이 쓴대요)

function winGo1(){
	location.assign = ('<http://www.google.com>');
}
function winGo2(){
	location.replace = ('<http://www.google.com>');
}

```

</script>
</head>
<body>
<button onclick="winGo1()">히스토리 남기고 이동</button>
<button onclick="winGo2()">히스토리 남기고 않고 이동</button>
</body>
</html>