When using forms to design questionnaires, in order to reduce user operations, it is a good idea to use select boxes. There are two types of select boxes in HTML, namely Radio button box and Checkbox, the difference between the two is that the user can only select one option in the Radio button, while the user can select as many as they want in the Checkbox items, or even select all. Please see the following example:
Syntax:
<input type="radio/checkbox" value="值" name="名称" checked="checked"/>
1, type:
When type="radio" , the control is radio button
When type="checkbox", the control is checkbox
2, value: The value of submitting data to the server (used by background program PHP)
3, name: Name the control, In preparation for the use of background programs ASP and PHP
4, checked: When checked="checked" is set, this option is selected by default
As shown in the following code:
Results displayed in the browser:
Note: Same group# For ## radio buttons, the name value must be consistent with . For example, the above example has the same name "radioLove", so that radio buttons in the same group can play the role of radio selection.
Next Section