Home  >  Article  >  Backend Development  >  怎么实现点击表头信息按表头字段顺序或倒序排序

怎么实现点击表头信息按表头字段顺序或倒序排序

WBOY
WBOYOriginal
2016-06-13 12:12:251577browse

如何实现点击表头信息按表头字段顺序或倒序排序
如下图,页面里有各种条件查询还有分页,如何点击表头的接入价格和投放价格分别按对应字段顺序排序,再点击按字段倒序排序




------解决思路----------------------
點擊時帶2個參數
例如
field = id
order = asc/desc

然後提交到後台,後台接收後,select 時加上order by $field $order; 
再返回刷新頁面就可以了。
------解决思路----------------------
排序和分页并不矛盾,只是在分页上加个排序方式而已
所以你分页怎么做的,排序就怎么做

Statement:
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn