$(function(){ $(".page a").each(function(){ if($(this).text()=="首页"){ $(this).text("first"); } if($(this).text()=="上一页"){ $(this).text("prev"); } if($(this).text()=="下一页"){ $(this).text("next"); } if($(this).text()=="尾页"){ $(this).text("end"); } }) })