当前位置:嗨网首页>书籍在线阅读

26-问题

  
选择背景色: 黄橙 洋红 淡粉 水蓝 草绿 白色 选择字体: 宋体 黑体 微软雅黑 楷体 选择字体大小: 恢复默认

10.6.1 问题

你有一个用于选择颜色的下拉框,希望在其中添加新的颜色或者删除其中的选项。

<label for="colors">Colors</label>
<select id="colors" multiple="multiple">
   <option>Black</options>
   <option>Blue</options>
   <option>Brown</options>
</select>
<button id="remove">Remove Selected Color(s)</button>
<label for="newColorName">New Color Name</label>
<input id="newColorName" type="text" />
<label for="newColorValue">New Color Value</label>
<input id="newColorValue" type="text" />
<button id="add">Add New Color</button>