<!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>
'JavaScript' 카테고리의 다른 글
javascript(10) onclick,onload,onChange (0) | 2018.08.05 |
---|---|
javascript(9) 화면전환,시간차로 글 띄우기 (0) | 2018.07.30 |
javascript(7) math.floor ,이름으로 값 넣기 (0) | 2018.07.30 |
javascript(6) checkbox ,value, element[n] (0) | 2018.07.30 |
javascript(5) (0) | 2018.07.30 |