$(function () { $(".e_bannerd-1 .p_btitle").each(function () { var data = $(this).text(); var s = "全球竞争力"; var reg = new regexp(s, 'g'); if (reg.test(data)) { var res = data.replace(reg, "" + s + ""); $(this).html(res); } }); });