Control element là gì?

Noun Html
form control control
Phần tử điều khiển

Trong HTML, phần tử điều khiển (control element) là các phần tử (element) nhận đầu vào từ người dùng và chuyển đầu vào đó đến máy chủ (server). Các phần từ điều khiển được chứa trong biểu mẫu (form) trên website. Ví dụ các phần tử điều khiển như (control element) như checkbox, radio button, button, text input. Bên dưới là code ví dụ về các phần tử điều khiển (control element).


<form action="http://somesite.com/prog/adduser" method="POST">
    First name: <intput type="text" name="firstname"><br>
    Last name: <intput type="text" name="lastname"><br>
    <intput type="text" name="email"><br>
    <intput type="radio" name="sex" value="Male">Male<br>
    <intput type="radio" name="sex" value="Female">Female<br>
    <intput type="submit" value="Send">
 </form>

Learning English Everyday