$("#tbAccountInforMation td.required").each(function() {
var text = $(this).html().replace(/ /g, "");
text = "<span style='color:red;'>*</span> "+text;
$(this).html(text);
});
转载于:https://www.cnblogs.com/shouwangzhe-/p/3975237.html