WEB.JS/04.함수_JS

chapter06 : 함수사용예제

GAWON 2023. 5. 19. 09:34
<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8">
<title>Insert title here</title>
<script type="text/javascript">
function welcome(){
alert("welcome");
}
</script>
</head>
<body>
<h1>선언적 함수 사용</h1>
<p>아래 버튼을 클릭하면 "welcome" 메세지가 나타납니다</p>
<input type="button" value="클릭!" onclick="welcome();">

//버튼이벤트넣은예제
</body>
</html>