Daniel: Validator beanstandet Dekrementierung

Beitrag lesen

Ahoi Jan,

Error  Line 14 column 8: invalid comment declaration: found character ";" outside comment but inside comment declaration.

nummer--;

Check that you are using a proper syntax for your comments, e.g: <!-- comment here -->. This error may appear if you forget the last "--" to close one comment, and later open another.

Was sagt dir diese Fehlermeldung? -> invalid comment declaration
Richtig, der HTML Validator denkt du willst einen HTML-Kommentar einfügen. dieser sieht aber nicht so:
nummer--;
aus sondern eben so:
<!-- comment here -->

Warum Validierst du dein JS mit dem HTML Validator? lagere das JS aus damit in der HTML-Datei nurnoch HTML steht und Validiere dein HTML dann.

Wenn du dein JS validieren willst benutze einen JS Validator

MfG