Visualizzazione risultati 1 fino 2 di 2

Discussione: Aiuto con la validazione

  1. #1
    Guest

    Predefinito Aiuto con la validazione

    Ciao a tutti,
    ho un problema con la validazione e non riesco a risolvere.

    Doctype: XHTML 1.0 Transitional

    Il codice è questo:
    Codice:
    <form name="form" action="http://alljapan.altervista.org/header.php"><input class="citazione" name="input" />
    <input class="pulsante" type="button" value="Citazione" onClick="randomdisplay()"/></form>
    <script type="text/javascript">
    quotes = new Array();
    quotes[0]="La vita umana è breve, ma io vorrei vivere sempre - Yukio Mishima";
    quotes[1]="Anche chi ama prima o poi dovrà morire. Però intanto è vivo - B.Yoshimoto";
    quotes[2]="Alla porta di chi ride, fortuna giunge - Proverbio Giapponese";
    quotes[3]="Le emozioni non hanno simpatia per l'ordine fisso - Yukio Mishima";
    quotes[4]="Chi compra il superfluo, vende il necessario - Proverbio Giapponese";
    quotes[5]="I periodi finiscono, come le stagioni.Semplicemente - B.Yoshimoto";
    quotes[6]="La forza di volontà attraversa anche le rocce - Proverbio Giapponese";
    quotes[7]="Felicità è anche non accorgersi che in realtà si è soli - B.Yoshimoto";
    quotes[8]="La forza di volontà attraversa anche le rocce - Proverbio Giapponese";
    function randomdisplay(){
    randomquote=quotes[Math.floor(Math.random()*quotes.length)]
    document.form.input.value=randomquote
    }
    
    setTimeout("randomdisplay()",100)
    </script>
    e mi appare il seguente messaggio di errore

    Line 32, Column 64: there is no attribute "onClick".
    …s="pulsante" type="button" value="Citazione" onClick="randomdisplay()"/></form>

    You have used the attribute named above in your document, but the document type you are using does not support that attribute for this element. This error is often caused by incorrect use of the "Strict" document type with a document that uses frames (e.g. you must use the "Transitional" document type to get the "target" attribute), or by using vendor proprietary extensions such as "marginheight" (this is usually fixed by using CSS to achieve the desired effect instead).

    This error may also result if the element itself is not supported in the document type you are using, as an undefined element will have no supported attributes; in this case, see the element-undefined error message for further information.

    How to fix: check the spelling and case of the element and attribute, (Remember XHTML is all lower-case) and/or check that they are both allowed in the chosen document type, and/or use CSS instead of this attribute. If you received this error when using the <embed> element to incorporate flash media in a Web page, see the FAQ item on valid flash.
    Non è che qualcuno saprebbe dirmi come risolvere ...
    Grazie per l'attenzione

  2. #2
    L'avatar di dementialsite
    dementialsite non è connesso Super Moderatore
    Data registrazione
    19-10-2004
    Residenza
    fuori Padova
    Messaggi
    5,046

    Predefinito

    Ehm... hai letto bene il messaggio di "errore"?
    How to fix: check the spelling and case of the element and attribute, (Remember XHTML is all lower-case) and/or check that they are both allowed in the chosen document type, and/or use CSS instead of this attribute. If you received this error when using the <embed> element to incorporate flash media in a Web page, see the FAQ item on valid flash.
    ovvero:
    Come risolvere: controllare lo spelling e le maiuscole dell'elemento e dell'attributo (XHTML ha tutto in minuscolo) e/o verifica che questi siano entrambi ammessi nel tipo di documento selezionato, e/o usa CSS invece di questo attributo. (omissis)
    Stammi bene...
    Le questioni tecniche hanno risposte migliori nel forum pubblico, non trovi?

    When you don't know your next step... improvise

    ALTERVISTA WANTS YOU!
    Vuoi diventare moderatore su AlterVista? Scopri come...

Regole di scrittura

  • Non puoi creare nuove discussioni
  • Non puoi rispondere ai messaggi
  • Non puoi inserire allegati.
  • Non puoi modificare i tuoi messaggi
  •