HTML Day3
*****From**** 表單: <form name="test" method="get" action="https://www.google.com"></from> from 表單 用於提供使用者輸入資訊並提交給server 輸入密碼欄: password:<input type="password" placeholder="六位數密碼" > 表籤input type 設定為password key資訊則為隱藏 *****單選按鈕***** <input type="radio" name="sex" checked="checked" >男 <input type="radio" name="sex" >女 type 設定為 radio 則為單選鈕 name 設定相同 在單選鈕中相同的name 只能選擇一個 checked="checked"設定為默認項 *****複選按鈕***** <input type="checkbox" name="like" />睡覺 <input type="checkbox" name="like" checked="checked" />吃飯 <input type="checkbox" name="like" />打豆豆 type 設定為 checkbox 則為複選鈕 name 設定相同 在複選鈕中相同的name 將複選鈕群組 checked="checked"設定為默認項 *****下拉菜單***** ...