Gracias, pero también lo he intentado y no me sale:
Código Javascript
:
Ver original$datos = array();
while($row = mysql_fetch_array($query))
{
if($row["qnum"]==1)$style="#tabl tr{
background:#FFFFFF;
}
#tabl tr:hover{
background:#B9F8F8;
}";
$datos[] = array(
'id_aviso' => $row['id_aviso'],
'telefonos' => $row['telefonos'],
'name' => utf8_encode($row['name']),
'apellidos' => utf8_encode($row['apellidos']),
'calle' => utf8_encode($row['calle']),
'localidad' => utf8_encode($row['localidad']),
'aparatos' => utf8_encode($row['aparatos']),
'marcas' => utf8_encode($row['marcas']),
'style' => $style
);
}
Código Javascript
:
Ver originalfunction filtrar()
{
$.ajax({
data: $("#frm_filtro").serialize()+ordenar,
type: "POST",
dataType: "json",
url: "ajax.php?action=listar",
beforeSend:function(){
$('.carga1').css('display','block');
$('.carga1').html("<img src='imagenes_menu/ajax-loader4.gif' align='center' /><br />Cargando...");
},
complete: function() {
$(".carga1").show();
$(".carga1").hide();
},
success: function(data){
var html_user ='' ;
if(data.length > 0){
$.each(data, function(i,item){
html_user += ' <body>';
html_user += '<form action="prod_sppb.php" method="post" name="nombreform">';
html_user += '<table id="tabl">';
html_user += '<tr bgcolor=#DFEBFF 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 += '</tr>';
html_user += '</table>';
html_user += '</form>';
html_user += '</body>';