问问题
813 次
3 回答
1
使用 jquery .. 将 ID 分配给您的选择元素并使用以下代码
$('#select-id').change(function() {
//piece of code to do when option changes
})
于 2013-02-02T18:28:42.850 回答
0
我认为这会成功。我们将隐藏所有其他不需要的块,并将出现我们唯一需要的块
<html>
<head>
<style>
.yourContentHere {
display: none;
}
.activeContent {
display: block;
}
</style>
<script src="http://code.jquery.com/jquery-1.8.3.min.js"></script>
</head>
<body>
<form name="dropdown-list">
<select>
<option value="1" selected="selected">1</option>
<option value="2">2</option>
<option value="3">3</option>
</select>
</form>
<div id="yourDropdownChoiceContent">
<div class="yourContentHere activeContent">This wiil appear if we click dropdown 1</div>
<div class="yourContentHere">This wiil appear if we click dropdown 2</div>
<div class="yourContentHere">This wiil appear if we click dropdown 3</div>
</div>
<script>
$('select').change(function(){
var chosenOption = $('select option:selected').index()
$('.yourContentHere').removeClass('activeContent')
$('.yourContentHere').eq(chosenOption).addClass('activeContent')
});
</script>
</body>
</html>
于 2013-02-02T19:10:21.013 回答
0
我认为您需要使用Javascript。
于 2013-02-02T18:47:03.953 回答