40. 關於網頁輸入表單(form)命令描述,下列何者錯誤?
(A)單選鈕:< input type=checkbox>
(B)單行輸入盒:<input type=text>
(C)按鈕:< button> </button >
(D)多行輸入框:< textarea> < /textarea>
答案:登入後查看
統計: A(243), B(51), C(30), D(47), E(0) #1996466
統計: A(243), B(51), C(30), D(47), E(0) #1996466
詳解 (共 3 筆)
#3943530
Input Type Radio 單選按鈕
<input type="radio"> defines a radio button.
Radio buttons let a user select ONLY ONE of a limited number of choices: 只能單選
Input Type Checkbox 核取方塊
<input type="checkbox"> defines a checkbox. 核取方塊,又叫「多選框」、「方框」
Checkboxes let a user select ZERO or MORE options of a limited number of choices.可不選或多選和區方塊
2
0
#3386413
單選鈕:< input type=checkbox> 表單核取方塊,可多選。
1
0