创建列表菜单,下面标签正确的是
A: <;select>;<;/select>;
B: <;option>;<;/option>;
C: <;select>;<;option>;<;/option>;<;/select>;
D: <;option>;<;select>;<;/option>;
A: <;select>;<;/select>;
B: <;option>;<;/option>;
C: <;select>;<;option>;<;/option>;<;/select>;
D: <;option>;<;select>;<;/option>;
举一反三
- 下面哪些语句写法是正确的? A: $("select B: sel1>option:selected").appendTo($("select C: sel2")); D: $("select E: sel1>option:selected").appendTo("select F: sel2"); G: $("select H: sel2").append("select I: sel1>option:selected"); J: $("select K: sel2").append($("select L: sel1>option:selected")); M: $("select N: sel2")[0].append("select O: sel1>option:selected");
- 在定义下拉列表时,<option></option>标记必须嵌套在<select></select>标记中。答案:
- 创建下拉列表时,应使用以下标签()。 A: input和label B: input C: select和option D: input和option
- 具有下拉列表功能的元素是由两个类标记元素组合实现的,即select和option。其中option作为父元素,select作为子元素,一个option中包含多个select子元素。
- 创建选项菜单应使用以下标记符( )。 A: SELECT 和 OPTION B: INPUT 和 LABEL C: INPUT D: INPUT 和 OPTION