Visualizzazione dei risultati da 1 a 3 su 3
  1. #1

    accedere agli elementi array di un form

    salve ragazzi,

    non mi era mai capitato di dover gestire elementi array di una checkbox list di un <form>.

    Vorrei sapere come è possibile accedere ad ogni singolo checkbox:

    Codice PHP:


    ....
    <
    scrip t>.... 
      function 
    checkAll(field) {
        for (
    0field.lengthi++)
        
    field[i].checked true ;
    }  }
    </
    scrip t>


    <
    form name="adminGallery">
     <
    input type="checkbox" name="del[]"  /> Select 

     
    <input type="checkbox" name="del[]"  /> Select 

     
    <input type="checkbox" name="del[]"  /> Select 

     
    <input type="checkbox" name="del[]"  /> Select 

     
    </form>

    <
    button onclick="checkAll(document.adminGallery.del)">Select All</button
    Ovviamente le parentesi quadre non posso rimuoverle, altrimenti viene meno il funzionamento dello script lato server, che si occupa di raccogliere i nomi dei campi.

    Grazie
    IMPOSSIBLE IS NOTHING - LOOK BEFORE YOU LEAP !!!

  2. #2
    Moderatore di Annunci siti web, Offro lavoro/collaborazione, Cerco lavoro L'avatar di cavicchiandrea
    Registrato dal
    Aug 2001
    Messaggi
    26,133
    Prova cosi:
    codice:
    <script>.... 
      function checkAll() {
    var Box = document.getElementsByTagName("input");
        for (i = 0; i < Box.length; i++){
        if(Box[i].getAttribute("type")=="checkbox"){
    Box[i].checked = true ;}
    } 
    }
    </script>
    
    
    <form name="adminGallery">
     <input type="checkbox" name="del[]"  /> Select 
    
     <input type="checkbox" name="del[]"  /> Select 
    
     <input type="checkbox" name="del[]"  /> Select 
    
     <input type="checkbox" name="del[]"  /> Select 
    
     
    </form>
    
    <button onclick="checkAll()">Select All</button>
    Cavicchi Andrea
    Problemi con javascript, jquery, ajax clicca qui

  3. #3
    grazie Mille !
    IMPOSSIBLE IS NOTHING - LOOK BEFORE YOU LEAP !!!

Permessi di invio

  • Non puoi inserire discussioni
  • Non puoi inserire repliche
  • Non puoi inserire allegati
  • Non puoi modificare i tuoi messaggi
  •  
Powered by vBulletin® Version 4.2.1
Copyright © 2025 vBulletin Solutions, Inc. All rights reserved.