有没有可以在本地计算机上运行的简单内容过滤插件?
我想在本地 Android 平板电脑上运行 html 文件,并且想过滤两层内容。
- 选择类别
- 选择价格范围(可选)
- 然后出现一个样式分类器,根据不同的条件更改选项 我搜索了所选的类别,
但没有找到任何可以实现我想要的功能的 jQuery 插件,因此,如果您知道任何提示,或者如果您知道我可以做到这一点的任何方法,我想听听您的提示。
另外,是否可以在没有 php 和 mysql 的情况下进行可排序分页?
I want to run an html file on a local android tablet and I would like to filter content in 2 layers.
- select a category
- Choose a price range (optional)
- Then a style sorter appears that changes the options depending on
the category chosen
I searched but didn't find any jQuery plugins that do what I want, so I'd like to hear your tips if you know of any or if you know of any way I can do this.
Also, is it possible to do sortable pagination without php and mysql?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您可以使用 jQuery 即时更改
select
选项。有几篇帖子 Stackoverflow 上涵盖了该主题。至于进行排序和分页的 jQuery 插件 - 您可以查看 tableSorter 插件 或 DataTables - 后者的功能有点臃肿,但为您的表提供了一个非常灵活的“搜索”选项 - DataTables 示例。
两者都要求您拥有表格 HTML 数据,但这两个插件都会为您处理所有排序和分页(带有自定义默认设置的选项)。
You can use jQuery to change the
select
options on the fly. There are several posts on Stackoverflow that cover this topic.As for jQuery plugins that do sorting and pagination - you can check out either the tableSorter plugin or DataTables - the latter is a bit more bloated with features, but offers a very slick 'search' option to your table - DataTables example.
Both require you to have tabular HTML data, but both plugins handle all of the sorting and pagination for you (with options to customize default settings).