본문 바로가기

JavaScript

javascript(8) 클릭시 다른페이지로 가기

<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8">
<title>Insert title here</title>
</head>
<body>

-1번-<a href="NewFile.html">NewFile.html로 이동</a>

 

 

-2번- <form action="NewFile.html">
<input type="submit" value="NewFile.html로 이동"> <!-- 입력을 했을 때 바로이동 -->


</form><br><br>
<!-- 자바스크립트로  -->
-3번- <button type="button" onclick="myfunc()">버튼</button>


<script type="text/javascript">
function myfunc() { /* 입력을 했을 때 체크 하고 이동 */
 location.href = "NewFile.html";
}

 


</script>

 

 


</body>
</html>

 

 

 

 

 

-------------------------------------------------------------------------------------------------------------------

<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8">
<title>Insert title here</title>
</head>
<body>

<h1>여기는 NewFile입니다람쥐쥐쥐쥐났다고했다람쥐들이많이 뛰어놀고 있어</h1>


</body>
</html>