你好!
要的是否下面的效果?
追问是的。。大神。求答案。
追答参考easyui demo中datagrid的custompager.html,在datagrid的onLoadSuccess事件中进行修改:
$("#dg").datagrid({
onLoadSuccess:function(){
var pager = $('#dg').datagrid('getPager');
pager.pagination({
beforePageText: '第',//页数文本框前显示的汉字
afterPageText: '页 共 {pages} 页',
displayMsg: '当前显示 {from} - {to} 条记录 共 {total} 条记录',
buttons:[{
iconCls:'icon-search',
handler:function(){alert('search');}
},{
iconCls:'icon-add',
handler:function(){alert('add');}
},{
iconCls:'icon-edit',
handler:function(){alert('edit');}
}]
});
var icon2text = ["首页","上一页","下一页","尾页"];
$(".pagination").find("td:eq(2),td:eq(3),td:eq(9),td:eq(10)").each(function(i){
$(this).find(".l-btn-text").html(icon2text[i]);
});
}
});
希望对你有帮助!!