jquery 可过滤的组合使用 selectbox 而不是普通的 href
我正在使用新媒体活动的可过滤组合脚本( http://www.newmediacampaigns.com/page/a-jquery-plugin-to-create-an-interactive-filterable-portfolio-like-ours )效果很好在无序列表中使用普通链接时。不过,我想在选择框中提供选项。有人能指出我正确的方向吗?
编辑:我想通过从选择框中选择选项来使用过滤器,如下所示
<select id="someid">
<option selected value="#All">All</option>
<option value="#Design">Design</option>
<option value="#Political">Political</option>
<option value="#Business">Business</option>
</select>
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您的
select
上确实有一个change
事件。在此处理程序中,您需要调用与单击链接相同的例程!但是:引发
change
事件取决于浏览器。有人可能会立即调用它,其他人可能会在你模糊时调用它!将这个想法与 可过滤文档:
例如
you do have a
change
-event on yourselect
. in this handler you need to call the same routine as clicking on the link would!but: raising
change
-event is browser-depended. one may call it immediately, others when you blur!combine the idea with filterable docu:
eg