私はインターネットでたくさん検索しましたが、問題の解決策が見つかりませんでした。
私は AJAX、PHP、および Datatables を使用しています。プルアップはうまく機能します。データテーブルにレコードを表示できました。
私がやりたいのは、マウスが各行の上にあるときに「点灯」し、マウスを削除して通常に戻すことです。
私が見つけた限り、私に起こっていることは、イベントが行を検出しないということです。つまり、私が使用するコードは次のとおりです...
$("#tabla tbody tr").each(function(){
$(this).mouseover(function(){
$(this).addClass("ui-state-hover");
}).mouseout(function(){
$(this).removeClass("ui-state-hover");
});
});
HTML コード:
<table id="tabla">
<thead>
<tr>
<th>Id</th>
<th>Titulo</th>
<th>Subtitulo</th>
<th>Fecha</th>
<th>Acceder</th>
</tr>
</thead>
<tbody>
</tbody>
</table>
ページに手動で行を追加すると、マウスオーバーで動作します 例:
<table id="tabla"> <thead> <tr> <th>Id</th> <th>Titulo</th> <th>Subtitulo</th> <th>Fecha</th> <th>Acceder</th> </tr> </thead> <tbody> <tr > <td>4</td> <td>Titulo</td> <td>Subtitulo</td> <td>2013-09-11 00:00:00</td> <td>4</td> </tr> </tbody> </table>
問題は、AJAX関数を介して行が挿入されたときに機能しないことです。
AJAX コード:
$.ajax({
url:'./listahistorias_proceso.php',
type:'post',
data:{ tag: 'getData'},
dataType: 'json',
success: function(data){
if(data.success){
$.each(data, function(index,record){
if($.isNumeric(index)){
var row = $("<tr />");
$("<td />").text(record.idhistoria).appendTo(row);
$("<td />").text(record.titulo).appendTo(row);
$("<td />").text(record.subtitulo).appendTo(row);
$("<td />").text(record.fecha).appendTo(row);
$("<td />").text(record.acceder).appendTo(row);
$("<tr>");
row.appendTo('table tbody');
}
})
}
oTable = $('table').dataTable({
"bjQueryUI": true,
"sPaginationType": "full_numbers",
"oLanguage": {
"sLengthMenu": "Mostrar _MENU_ filas por pagina",
"sZeroRecords": "Datos no encontrados",
"sInfo": "Mostrando _START_ a _END_ de _TOTAL_ filas",
"sInfoEmpty": "Sin entradas para mostrar",
"sInfoFiltered": "",
"sSearch": "Buscar",
"sProcessing": "Buscando...",
"sLoadingRecords": "Por favor espere - Cargando...",
"sEmptyTable": "No se obtuvieron datos",
"oPaginate": {
"sFirst": "Primera",
"sPrevious": "Anterior",
"sNext": "Siguiente",
"sLast": "Ultima"
}
},
"aoColumns":[
{'sname':'id', 'sType':'numeric', 'bVisible':true},
{'sName':'Titulo', 'sType':'string','bVisible':true},
{'sName':'Subtitulo', 'sType':'string','bVisible':true},
{'sName':'Fecha', 'sType':'date','bVisible':true},
{'sName':'Acceder', 'sType':'numeric','bVisible':true}
],
"oTableTools": {
"sRowSelect": "single",
"fnRowSelected": function( node ) {
alert("Clicked");
}
}
})
},
error: function(jqXHR, textStatus, errorThrown){
alert("error ==>" + jqXHR.responseText);
alert("error ==>" + jqXHR.textStatus);
alert("excepcion ==>" + errorThrown);
}
}); //ajax
注: .live()、.on()、.click() と結び付けましたが、機能しません。
繰り返しますが、問題は ajax によって挿入された行が検出されないことだと思います。
今までありがとうございました。私がはっきりしていたことを願っています。コメントお待ちしております。
ありがとうございました。よろしく。