Gracias Alexis, pero al final lo he hecho así:
Código PHP:
Ver original {
if($row["facturacion"]=='1' or $row["facturacion"]=='09'){
$style="background-color:red";
}else{
$style="#tr:hover{
background:#DFEBFF;
}";
}
'id_aviso' => $row['id_aviso'],
'telefonos' => $row['telefonos'],
'style' => $style
);
}
Código Javascript
:
Ver original$.each(data, function(i,item){
html_user += '<tr onclick="pulsar1(this, ' + *String.fromCharCode(39) + item.id_aviso + String.fromCharCode(39) *+ ');" ondblclick="pulsar(this, ' + *String.fromCharCode(39) + item.id_aviso + String.fromCharCode(39) *+ ');" >';
html_user += '<td style="'+item.style+'"><input name="demo" type="checkbox" value="' + item.id_aviso + '"/></td>';
html_user += '<td style="'+item.style+'">'+item.id_aviso+'</td>';
html_user += '<td style="'+item.style+'">'+item.telefonos+'</td>';
html_user += '<td style="'+item.style+'">'+item.name+' '+item.apellidos+'</td>';
html_user += '<td style="'+item.style+'">'+item.calle+'</td>';
html_user += '<td style="'+item.style+'">'+item.localidad+'</td>';
html_user += '<td style="'+item.style+'">'+item.aparatos+'</td>';
html_user += '<td style="'+item.style+'">'+item.marcas+'</td>';
html_user += '<td style="'+item.style+'">'+item.facturacion+'</td>';
html_user += '</tr>';
});
Como lo ves, se puede mejorar ?
Una pregunta:
Cuando ingreso el valor "1" o "09" del campo
facturacion en la base de datos me lo ingresa dejando espacios después de dichos valores. Y al sacar el array me lo imprime así:
[{"facturacion":"1
(aquí es donde van los espacios en blanco) "}]
Y claro cuando quiero buscar el valor "1" me dice que no se encuentra. Entonces tengo que entrar en la base de datos y eliminar esos espacios.
Porque puede ser ?