form태그-data, month, week

imjingu·2023년 7월 4일
0

개발공부

목록 보기
53/481

type="data"
생년월일과 같이 년/ 월/ 일에 대한 정보를 달력을 통해 선택

<!DOCTYPE html>
<html lang="en">
<head>
    <meta charset="UTF-8">
    <meta name="viewport" content="width=device-width, initial-scale=1.0">
    <title>Document</title>
</head>
<body>
    
    <form name="frmPost" action="action.php" method="post">
        <label for="date2">날짜 선택</label>
        <input type="date" name="date" id="date2">

        <br>
        <!--
            type="month"
            년/월 에 대한 정보를 달력을 통해 선택
        -->
        <input type="month" name="month">

        <br>
        <!--
            type="week"
            년/주 에 대한 정보를 달력을 통해 선택
        -->
        <input type="week" name="week">
        <input type="submit" value="전송">
    </form>
</body>
</html>

0개의 댓글