這裏是工作示例http://jsfiddle.net/p4stK/或這裏jquery的變化爲type =無線電
Select <select name="type" id="type" style="margin-left:57px; width:153px;">
<option ame="first" value="first">first</option>
<option name="second" value="second">second</option>
<option name="computer" value="computer">computer</option>
<option name="car" value="car">car</option>
</select>
<div id="first">Information first</div>
<div id="second">Information second</div>
<div id="computer">Somthing about computer here</div>
<div id="car">Somthing about car here</div>
和
$(function() {
$('#car').hide();
$('#computer').hide();
$('#second').hide();
$('#type').change(function() {
$('#computer').hide();
if (this.options[this.selectedIndex].value == 'computer') {
$('#computer').show();
}
$('#car').hide();
if (this.options[this.selectedIndex].value == 'car') {
$('#car').show();
}
$('#first').hide();
if (this.options[this.selectedIndex].value == 'first') {
$('#first').show();
}
$('#second').hide();
if (this.options[this.selectedIndex].value == 'second') {
$('#second').show();
}
});
});
我需要與類型此代碼的工作=無線電像
<form>
<input type="radio" name="check" value="first"><b>First</b><br />
<input type="radio" name="check" value="second"><b>Second</b><br />
<input type="radio" name="check" value="computer"><b>Computer</b><br />
<input type="radio" name="check" value="car"><b>Car</b>
</form>
jsfiddle本身不工作。 – Jobin
,我需要在這裏發佈的代碼。 – Jai
爲我工作,我將編輯並添加代碼 – Nazaret2005