網頁的下拉菜單是空白的?
HTML<select>下拉框中,可以通過設定一個空值來使開始顯示的是空白(如設置第一行<optionvalue="kongbai"></option>為空)。操作代碼如下:<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"><html xmlns="http://www.w3.org/1999/xhtml"><head><meta http-equiv="Content-Type" content="text/html; charset=utf-8" /><title>SELECT開始顯示空白</title></head><body><select><option value="kongbai"></option> <option value="first">first</option> <option value="second">second</option> <option value="three">three</option> <option value="four">four</option></select></body></html>詳細代碼見附件。效果圖如下圖所示: