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

    Operatore ternario chemmisfugge...

    Uela'!
    Qualcuno, for courtesy, mi spiega perché questo stupido codice (in una funzione):

    Codice PHP:
            if (document.getElementById(id).style.display=="block")   
            
    document.getElementById(id).style.display="none";
            }
            else {
            
    document.getElementById(id).style.display="block";
            } 
    mi funzia, mentre questo:

    Codice PHP:
    document.getElementById(id).style.display=='block' 'none' 'block'
    proprio NO?!

    C'è qualcosa di *estremamente scemo* che mi è sfuggito, oppure l'operatore ternario in Javascript ha una sintassi differente rispetto al php?

    TNX ;-)

    cià
    ale
    If you can keep your head when all about you are losing theirs,
    it's just possible you haven't grasped the situation.

  2. #2
    Sì, l'errore c'è:
    tu hai scritto:
    Codice PHP:
    document.getElementById(id).style.display=='block' 'none' 'block'
    così facendo NON ASSEGNI il valore a document.getElementById(id).style.display, lo testi solo!
    devi scrivere:
    Codice PHP:
    document.getElementById(id).style.display = (document.getElementById(id).style.display=='block') ? 'none' 'block'
    HTH
    Ciao!
    Zappa
    [PC:Presario 2515EU][Cpu:P4@2.3GHz][Ram: 512M][HDU:80G@5400 RPM]
    [Wireless:LinkSys][OS: Ubuntu 9.04 - Jaunty Jackalope]

  3. #3
    Originariamente inviato da homezappa
    Sì, l'errore c'è:
    così facendo NON ASSEGNI il valore a document.getElementById(id).style.display, lo testi solo!
    GIUST!!! ;-)
    TnxALOT!

    cià
    ale
    If you can keep your head when all about you are losing theirs,
    it's just possible you haven't grasped the situation.

  4. #4
    de nada!
    Zappa
    [PC:Presario 2515EU][Cpu:P4@2.3GHz][Ram: 512M][HDU:80G@5400 RPM]
    [Wireless:LinkSys][OS: Ubuntu 9.04 - Jaunty Jackalope]

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.