From 52551e63da95ca6d384285795f1bc77b344b9c76 Mon Sep 17 00:00:00 2001 From: zhanghongqing Date: Wed, 2 Jan 2019 11:41:34 +0800 Subject: [PATCH] =?UTF-8?q?=E8=A1=A5=E5=85=85=E6=8F=90=E4=BA=A4?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/main/webapp/static/pages/scripts/jquery.pagination.js | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/src/main/webapp/static/pages/scripts/jquery.pagination.js b/src/main/webapp/static/pages/scripts/jquery.pagination.js index e8444931d..f4ebc5ab8 100644 --- a/src/main/webapp/static/pages/scripts/jquery.pagination.js +++ b/src/main/webapp/static/pages/scripts/jquery.pagination.js @@ -21,8 +21,8 @@ current:1, //当前第几页 prevCls:'prev', //上一页class nextCls:'next', //下一页class - prevContent:'<', //上一页内容 - nextContent:'>', //下一页内容 + prevContent:'«', //上一页内容 + nextContent:'»', //下一页内容 activeCls:'active', //当前页选中状态 coping:false, //首页和尾页 homePage:'', //首页节点内容 @@ -80,7 +80,7 @@ } if(current >= opts.count * 2 && current != 1 && pageCount != opts.count){ var home = opts.coping && opts.homePage ? opts.homePage : '1'; - html += opts.coping ? ''+home+'...' : ''; + html += opts.coping ? ''+home+'...' : ''; } var start = current - opts.count, end = current + opts.count; @@ -97,7 +97,7 @@ } if(current + opts.count < pageCount && current >= 1 && pageCount > opts.count){ var end = opts.coping && opts.endPage ? opts.endPage : pageCount; - html += opts.coping ? '...'+end+'' : ''; + html += opts.coping ? '...'+end+'' : ''; } if(current < pageCount){//下一页 html += ''+opts.nextContent+''