我需要使用 a<select>
来显示语言帮助 pdf 指南的列表。当有人选择语言选项时,我想淡化切换所有其他 pdf 链接。到目前为止,这是我汇总的内容;但它不起作用,我需要使用类而不是 id。
<select id="load">
<option>english</option>
<option>spanish</option>
<option>italian</option>
</select>
<h1> help text one </h1>
<ul class="content-list">
<li> english</li>
<li> spanish</li>
</ul>
<h1> help text two </h1>
<ul class="content-list">
<li> english</li>
<li> italian</li>
</ul>
<h1> help text three </h1>
<ul class="content-list">
<li> english</li>
</ul>
js
$(document).ready(function(){
$("#load").change(function(event) {
var id= "#"+this.value;
$(".content-lists").filter(":not("+id+")").hide();
$(id).fadeToggle("slow", "linear");//This will toggle div based on the selected option
});
});