我有这个代码:
JavaScript / jQuery:
$('#eform input').each(function() {
if (this.className.indexOf('required') != -1) {
$(this).closest('.rowElem').find('label').text(function(_, txt) {
return '*' + txt
});
}
});
我怎么能以红色返回星号。?