본문 바로가기

HTML

[HTML] name 속성이 가능한 태그

반응형

name이 가능한 태그

<input>, <textarea>, <select>, <option>, <form>에서 사용 가능

 

예시 

<form action="process.php" method="post">
    <input type="text" name="username">
    <input type="password" name="password">
    <input type="submit" value="로그인">
</form>
<form action="<c:url value='/board/register' />" method="post">
    <div>
        작성자 : <input type = "text" name = "name" id = "name" ><br>
        아이디 : <input type = "text" name = "id" id = "id" ><br>
        제 목 : <input type = "text" name = "subject" id = "subject" ><br>
        내 용 : <br>
        <textarea rows="5" cols="40" name = "content" id = "content"></textarea>
    </div>
    <button type="submit" class="btn btn-write"><i class="fas fa-pencil-alt"></i>등록</button>
</form>

 

name을 사용하는 이유

1. 데이터를 서버로 전송할 수 있음

 

2. name 속성을 사용하여 특정 입력 필드를 선택할 수 있음

<input type="text" name="email" id="email">
var emailValue = $('input[name="email"]').val();

 

반응형