我的HTML表单(使用PHP)从数据库中读取值,并在文本输入中显示这些值。期望的结果是在显示这些值时更改文本字段的背景颜色。
$(function() {
$('#table1 text').each(function() {
if ($(this).text() == '1') {
$(this).css('background-color', '#f4b4b4');
}
if ($(this).text() == '2') {
$(this).css('background-color', '#c7f4b4');
}
if ($(this).text() == '3') {
$(this).css('background-color', '#f2cda6');
}
});
});