button

박부현·2021년 5월 20일
0

html

목록 보기
12/16
<html>
<head>
<meta charset="utf-8"
</head>
<body>
  <form action="http://localhost/form.php">
    <input type="submit" value="전송">
    <input type="button" value="버튼" onclick="alert('hello world')">
  </form>
</body>
</html>
  • button (자바스크립트와 함께 활용)
<input type="reset">
 사용자 입력한 모든 정보 초기화

0개의 댓글