如何創建一個HTML下拉列表,一旦個人選擇了一個option value
,觀看了他們的選擇,並已決定回去再拍option value
選擇是刷新回option disabled
標籤。HTML下拉列表
HTML:
<form>
<select name="URL" onchange="window.location.href=this.form.URL.options[this.form.URL.selectedIndex].value">
<option disabled="disabled" selected="selected">Choose a County for Recycling Information.......</option>
<option value="LINK">Ingham County (Google Map/PDF)</option>
<option value="LINK">Clinton County (PDF)</option>
<option value="LINK">Eaton County (PDF)</option>
</select>
</form>
的-select名稱 - 標籤生成的用戶到在同一個窗口中打開一個URL。
<select name="URL" onchange="window.location.href=this.form.URL.options[this.form.URL.selectedIndex].value">
如果一名個人從列表中選擇當前標準的,觀看他們的選擇(在同一窗口中打開),並返回(原來的網頁),在下拉菜單中沒有恢復到:
<option disabled="disabled" selected="selected">Choose a County for Recycling Information.......</option>
但仍然在option value
標記選擇,除非它們刷新/重新加載其瀏覽器窗口。
你需要使用jquery來做類似的事情 – Andrew 2013-04-30 13:40:16