我有一個下拉菜單,兩個div網頁基於選擇的div顯示:顯示/隱藏(切換)使用JavaScript
<html>
<head>
<title>Show/Hide a div section based on selection</title>
</head>
<body>
<select id='sel'>
<option value="1">Option 1</option>
<option value="2">Option 2</option>
</select>
<div id="firstdiv">
<label><input type="checkbox" id='1' />A</label>
<label><input type="checkbox" id='2' />B</label>
<label><input type="checkbox" id='3' />C</label>
</div>
<div id="seconddiv">
<label><input type="checkbox" id='4' />D</label>
<label><input type="checkbox" id='5' />E</label>
<label><input type="checkbox" id='6' />F</label>
</div>
</body>
</html>
我如何可以切換上面顯示兩個div基於使用JavaScript或jQuery的選擇?即當我選擇選項1時,應該顯示第一個div,之後應該隱藏,反之亦然。
可能重複[顯示div取決於選擇選項](http://stackoverflow.com/questions/1691170/show-div-depending-on-select-option) – Shadow
我現在編輯了問題。請檢查並移除@James Donnelly – mpsbhat