1. 程式人生 > >HTML基礎入門之標籤解析

HTML基礎入門之標籤解析

<form action="" method="get"> 使用者名稱:<input type="text"><br> 密碼:<input type="password"><br> 多選框:<br> <input type="checkbox">java <input type="checkbox">ios <input type="checkbox">c++<br> 單選框: <input type="radio" name="sex"
><input type="radio" name="sex"><br> 下拉選單 <select> <option>java</option> <option>ios</option> <option>javaweb</option> </select> <br> <textarea cols="20" rows="30">文字域</textarea>
</form> <br> <input type="button" value="按鈕"> <br> <input type="submit" value="提交">