Yii自帶的CPagination對錶格分頁後,將URL解析成static/locus/area_id/0/start/2013-09-24/end/2013-10-17/page/2.html格式時,前文寫的排序會不起做用,因此將URL轉換成/static/locus.html?area_id=0&start=2013-09-24&end=2013-10-17&id=area_id&order=1 html
$(function(){ var prefix = "/admin/static/locus"; $(".yiiPager li a").each(function(){ var href = $(this).attr("href") .replace(prefix + "/", "") .replace(".html", "") .replace(/([^/]+)\/([^/]*)/g, "$1=$2") .replace(/\//g, "&"); $(this).attr("href", prefix + ".html?" + href); }); });