js
function myOnload() {
$(document).ready(function() {
$('.x-text').each(function(index) {
console.log(index);
if(index==3){
$(this).html("全部"); }
});
}
myOnload();