如何通过select显示/隐藏div。(jquery)

时间:2009-06-25 10:55:00

标签: jquery select html hide show

我的代码:

<select id="select">
<option id="1" value="thai language">option one</option>
<option id="2" value="eng language">option two</option>
<option id="3" value="other language">option three</option>
</select>

<div id="form1">content here</div>
<div id="form2">content here</div>
<div id="form3">content here</div>

我想要的是在选择选项1时显示div#form1并隐藏form2 + form3,或者 选择选项2显示div#form2并隐藏form1 + form2

5 个答案:

答案 0 :(得分:15)

$('#select').change(function() {
   $('#form1, #form2, #form3').hide();
   $('#form' + $(this).find('option:selected').attr('id')).show();
});

请注意,ID不应以数字开头,但上面应该这样做。

答案 1 :(得分:2)

如果表单很大,可以将它们放在单独的文件中,

$(document).ready(function() {
     $('#select').change(function() {
         $("#myform").load(this.value);
     });
 });


<select id="select">
<option value="blank.htm">Select A Form</option>
<option value="test1.htm">option one</option>
<option value="test2.htm">option two</option>
<option value="test3.htm">option three</option>
</select>

<div id="myform" ></div>

答案 2 :(得分:0)

这样的东西?

var optionValue = $("#select").val();

$('#form1, #form2, #form3').hide();

switch(optionValue)
{
case 1:
  $("#form1").show();
  break;
case 2:
  $("#form2").show();
  break;
case: 3:
  $("#form3").show();
  break;
}

答案 3 :(得分:0)

仅隐藏之前显示的div不是更好吗? 所以;

var selection = 0;
$('#select').change(function() {
  $('#form' + selection).hide();
  selection = $(this).val();
  $('#form' + selection).show();
});

请注意,ID不应以数字开头,但上面应该这样做。

答案 4 :(得分:0)

更好的版本:

$('#select').change(function() {
   $('div').not('#form' + $(this).find('option:selected').attr('id')).hide();
   $('#form' + $(this).find('option:selected').attr('id')).show();
});