form標記創建表單仿百度搜索框<form action="01.php" method="post">輸入內容:<input type="text" name="keyword" ...
仿百度搜索框
<form action="01.php" method="post">輸入內容:<input type="text" name="keyword" /><input type="submit" value="搜索" /></form>
(表單的作用是橋樑,用戶填數據在表單內,提交后數據通過action傳給服務器,服務器處理完后返回數據)
type="password" 輸入密碼時點擊會出現鍵盤
type="checkbox"多選框
單選框,如男女:
男<type="radio" checked="checked" name="sex" value="male" /0>
女<type="radio" name="sex" value="female" />
学员评论