HTML:
<table>
<tr href="http://myspace.com">
<td>MySpace</td>
</tr>
<tr href="http://apple.com">
<td>Apple</td>
</tr>
<tr href="http://google.com">
<td>Google</td>
</tr>
</table>
JavaScript usando jQuery Biblioteca:
$(document).ready(function(){
$('table tr').click(function(){
window.location = $(this).attr('href');
return false;
});
});
puede probar esta aquí: http://jsbin.com/ikada3
CSS (opcional):
table tr {
cursor: pointer;
}
o la versión válida HTML con data-href
en lugar de href
:
<table>
<tr data-href="http://myspace.com">
<td>MySpace</td>
</tr>
<tr data-href="http://apple.com">
<td>Apple</td>
</tr>
<tr data-href="http://google.com">
<td>Google</td>
</tr>
</table>
JS:
$(document).ready(function(){
$('table tr').click(function(){
window.location = $(this).data('href');
return false;
});
});
CSS:
table tr[data-href] {
cursor: pointer;
}
Para un PHP-único arreglo, sólo tiene que añadir el enlace que desea para cada fila a cada célula dentro de esa fila. – Drew
Andrew, ¿cómo es eso una solución solo PHP? – ClosureCowboy