我正在尝试使下拉列表用作页面上的过滤器。我已经创建了表单,并且锚点在那里,当您单击下拉项目时什么都没有发生。如何触发它链接到锚点?
这是我使用的 jQuery:
<script>
$("#portfolio-list").bind("change", function() {
$("#" + this.value).show();
$("p:not(#" + this.value + ")").hide();
});</script>
这是我的表格:
<form name="dropdown" size="1" id="portfolio-list">
<select name="portfolio-list" id="portfolio-list">
<option value="#" rel="all" class="current">All</option>
<option value="#custom-exhibits" rel=custom-exhibits class=custom-exhibits>Custom Exhibits</option>
<option value="#permanent-installation" rel=permanent-installation class=permanent-installation>Permanent Installation</option>
</select>
</form>
任何帮助是极大的赞赏!