Domande taggate «mootools»


11
La funzione event.preventDefault () non funziona in IE
Di seguito è riportato il mio codice JavaScript (mootools): $('orderNowForm').addEvent('submit', function (event) { event.preventDefault(); allFilled = false; $$(".required").each(function (inp) { if (inp.getValue() != '') { allFilled = true; } }); if (!allFilled) { $$(".errormsg").setStyle('display', ''); return; } else { $$('.defaultText').each(function (input) { if (input.getValue() == input.getAttribute('title')) { input.setAttribute('value', ''); } …

20
Sintassi non rilevata Errore: token imprevisto:
Sto eseguendo una chiamata AJAX nel mio script MooTools, funziona bene in Firefox ma in Chrome sto ricevendo un Uncaught SyntaxError: Unexpected token :errore, non riesco a determinare il perché. Commentare il codice per determinare dove si trova il codice errato non produce nulla, sto pensando che potrebbe essere un …
Utilizzando il nostro sito, riconosci di aver letto e compreso le nostre Informativa sui cookie e Informativa sulla privacy.
Licensed under cc by-sa 3.0 with attribution required.