5

我的代码:

<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 并隐藏 form2+form3 时显示 div #form1,或者选择选项 2 显示 div#form2 并隐藏 form1+form2

4

5 回答 5

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

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

于 2009-06-25T10:58:21.200 回答
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>
于 2009-06-25T12:01:49.230 回答
0

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

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

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

于 2009-06-25T11:19:59.237 回答
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;
}
于 2009-06-25T11:03:10.457 回答
0

更好的版本:

$('#select').change(function() {
   $('div').not('#form' + $(this).find('option:selected').attr('id')).hide();
   $('#form' + $(this).find('option:selected').attr('id')).show();
});
于 2015-12-21T17:32:24.440 回答