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+''