1. Multiple lines of text
Multiline text uses the TEXTAREA tag, the default value needs to be written in the middle, and the input label is different, the Name property is used to retrieve the data in the background (request. Post.get (Meno))
<body> <textarea name="meno" > Default value </textarea></body>
2. Drop-down box
Radio
The drop-down box is the Select label, the Name property is used for the backend to get the data, the value of the selectd= "selected" is the default value (can write directly SELECTD specification write needs to add =), size is a display of a few, the default is 1, that is, one.
<body> <select name="City" size= "2"> <option value=" 1 "> Beijing </option> <option value="2"> Shanghai </option> <option value="3" selected="selected" > guangzhou </option> </select></body>
Multi-Select
Multiple property is multi-select, you need to hold down CTRL while multiple selection
<select name="City" multiple="multiple"> < Option value="1"> Beijing </option> <option value="2 "> Shanghai </option> <option value="3" selected= " selected "> Guangzhou </option> </select>
The drop-down box option group, itself group name is not selectable, team member optional, similar to the following
<select> <optgroup label=" Hebei province "> <option> shijiazhuang </option> <option> baoding </option> <option> hengshui </option> </optgroup> < Optgroup label=" Shandong Province "> <option> texas </option> <option > Jinan </option> <option> Qingdao </option> </optgroup></select>
HTML multiline text textarea and drop-down box select (12)