상세 컨텐츠

본문 제목

jQuery, JavaScript 새로고침(reload)

JavaScript & HTML

by husks 2016. 8. 25. 15:43

본문

반응형


업무하던 중 새로고침해야할 필요가 있어 작업한 내용을 기록합니다.


<!doctype html>
<html lang="kr">
<head>
  <meta charset="utf-8">
  <title>demo</title>
  <script src="https://code.jquery.com/jquery-1.10.2.js"></script>
  <script>
	$(document).on("click","button[name=reload]",function(){
		location.reload();		
	});
  </script>
</head>
<body>
	<button name="reload">새로고침</button> 
</body>
</html>


반응형

관련글 더보기

댓글 영역