Intercettare le righe di una tabella taggate con "id"

giuseppeI

Utente Attivo
25 Giu 2012
41
0
0
Ho il seguente problema che non riesco a risolvere:
ho una tabella in cui alcune righe sono marcate con l'"id".
E' possibile scansionando la tabella, magari con un ciclo "for oppure while " riuscire ad individuare le suddette righe ed estrarre l'"id" per poterlo utilizzare con un "if" oppure con un "switch".
Grazie
Giuseppe
 
puoi provare cosi
HTML:
<table id="tabella">
    <tr>
        <td>&nbsp;</td>
    </tr>
    <tr>
        <td>&nbsp;</td>
    </tr>
    <tr>
        <td id="ciao">&nbsp;</td>
    </tr>
    <tr>
        <td>&nbsp;</td>
    </tr>
    <tr>
        <td>&nbsp;</td>
    </tr>
</table>
<script type="text/javascript">
            
    var tabella = document.getElementById('tabella');
    var td = tabella.getElementsByTagName('td');
    var count_td = td.length;
    
    for(var i = 0; i < count_td; i++) {              
        if(td[i].id == "ciao") {
            alert('id ciao, posizione ' + i);
        }
    }
</script>
 
Ultima modifica:

Discussioni simili