下列哪一项是”多选式选单"的语法? (select mltiple> <input type=””/》 <input type=combobox”/> (textares></textarea》
时间: 2023-12-05 15:03:54 浏览: 100
多选式选单的语法是 `<select multiple>`。选项会以列表形式呈现,用户可以选择多个选项。其他选项的语法如下:
- 单选式选单:`<select>`
- 输入框:`<input type="text">`
- 单选按钮:`<input type="radio">`
- 复选框:`<input type="checkbox">`
- 下拉框:`<select>`
- 文本域:`<textarea>`
阅读全文