Validator meckert rum
Twilo
- javascript
0 Siechfred0 Vinzenz Mai0 Struppi1 Ashura0 Struppi
0 Felix Riesterer0 molily0 Twilo
0 flashnfantasy
Hallo,
ich habe folgenden Code
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
<html xmlns="http://www.w3.org/1999/xhtml" dir="ltr" lang="de" xml:lang="de">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<title>test</title>
</head>
<body>
<script type="text/javascript">
document.write('<p>test</p>');
</script>
</body>
</html>
der Validator gibt mir folgenden Fehler aus
Line 10, column 19: document type does not allow element "p" here
document.write('<p>test</p>');
The element named above was found in a context where it is not allowed. This could mean that you have incorrectly nested elements -- such as a "style" element in the "body" section instead of inside "head" -- or two elements that overlap (which is not allowed).
One common cause for this error is the use of XHTML syntax in HTML documents. Due to HTML's rules of implicitly closed elements, this error can create cascading effects. For instance, using XHTML's "self-closing" tags for "meta" and "link" in the "head" section of a HTML document may cause the parser to infer the end of the "head" section and the beginning of the "body" section (where "link" and "meta" are not allowed; hence the reported error).
könnte mich einer aufklöären, warum das nicht funktioniert, oder eine entsprechende Lektüre geben :)
mfg
Twilo
Tag Twilo.
Line 10, column 19: document type does not allow element "p" here
document.write('<p>test</p>');
könnte mich einer aufklöären, warum das nicht funktioniert, oder eine entsprechende Lektüre geben :)
Der Javascript-Bereich (eröffnet durch <script>) ist am Slash zu Ende. Das folgende P-Element ergibt somit keinen Sinn. Maskierst du den Slash mit einem Backslash, sollte das dein Problem lösen.
Siechfred
Hallo Siechfred,,
Line 10, column 19: document type does not allow element "p" here
document.write('<p>test</p>');
könnte mich einer aufklöären, warum das nicht funktioniert, oder eine entsprechende Lektüre geben :)
Der Javascript-Bereich (eröffnet durch <script>) ist am Slash zu Ende. Das folgende P-Element ergibt somit keinen Sinn. Maskierst du den Slash mit einem Backslash, sollte das dein Problem lösen.
wenn du das so meinst
<script type="text/javascript">
document.write('<p>test<\/p>');
</script>
bekomme ich 4 Fehler :-/
Line 10, column 19: document type does not allow element "p" here
document.write('<p>test</p>');
The element named above was found in a context where it is not allowed. This could mean that you have incorrectly nested elements -- such as a "style" element in the "body" section instead of inside "head" -- or two elements that overlap (which is not allowed).
One common cause for this error is the use of XHTML syntax in HTML documents. Due to HTML's rules of implicitly closed elements, this error can create cascading effects. For instance, using XHTML's "self-closing" tags for "meta" and "link" in the "head" section of a HTML document may cause the parser to infer the end of the "head" section and the beginning of the "body" section (where "link" and "meta" are not allowed; hence the reported error).
Line 10, column 24: character "<" is the first character of a delimiter but occurred as data
document.write('<p>test</p>');
If you wish to include the "<" character in your output, you should escape it as "<". Another possibility is that you forgot to close quotes in a previous tag.
Line 11, column 8: end tag for "p" omitted, but OMITTAG NO was specified
</script>
You may have neglected to close a tag, or perhaps you meant to "self-close" a tag; that is, ending it with "/>" instead of ">".
Line 10, column 17: start tag was here
document.write('<p>test</p>');
mfg
Twilo
Hi !
Probier doch mal
<SCRIPT LANGUAGE="JavaScript">
document.write("<p>test</p>");
</SCRIPT>
Gruß
Hans
Hi,
Probier doch mal
<SCRIPT LANGUAGE="JavaScript">
in XHTML/1.0 Strict gibt es kein <SCRIPT>-Element.
Cheatah
Hallo,
Probier doch mal
<SCRIPT LANGUAGE="JavaScript">
in XHTML/1.0 Strict gibt es kein <SCRIPT>-Element.
und erst recht kein ->LANGUAGE="JavaScript"<- ;-)
mfg
Twilo
Hallo Twilo
<script type="text/javascript">
document.write('<p>test</p>');
Du solltest den / maskieren:
document.write('<p>test<\/p>');
</script>
könnte mich einer aufklöären, warum das nicht funktioniert, oder eine entsprechende Lektüre geben :)
Der / in </p> beendet <script>. Deswegen maskieren, danach sollte der Validator nicht mehr meckern. <body> darf laut der von Dir verwendeten DTD <p>-Elemente enthalten.
Freundliche Grüße
Vinzenz
der Validator gibt mir folgenden Fehler aus
Line 10, column 19: document type does not allow element "p" here
in XHTML sind die Scriptblöcke CDATA
<![CDATA[
document.write('<p>test</p>');
]]>
(aber frag mich nicht was das heißt - ich weiß es nicht)
Struppi.
Hallo Struppi.
in XHTML sind die Scriptblöcke CDATA
<![CDATA[
document.write('<p>test</p>');
]]>(aber frag mich nicht was das heißt - ich weiß es nicht)
Gruß, Ashura
Ich wußte doch das ein kluger Mensch weiterhilft ;-)
Struppi.
Lieber Struppi,
in XHTML sind die Scriptblöcke CDATA
<![CDATA[
document.write('<p>test</p>');
]]>(aber frag mich nicht was das heißt - ich weiß es nicht)
Auweia, da muss ich wohl _einiges_ an meinen Seiten ändern... Wenn ich das früher gewusst (bzw. nachgelesen) hätte! Man lernt ja bekanntlich nie aus.
Liebe Grüße aus Ellwangen,
Felix Riesterer.
Hallo,
in XHTML sind die Scriptblöcke CDATA
<![CDATA[
document.write('<p>test</p>');
]]>
Besser die Markierungen auskommentieren, sonst werden sie u.U. als JavaScript-Code missverstanden:
<script type="text/javascript">
// <![CDATA[
document.write('<p>test</p>');
// ]]>
</script>
http://de.selfhtml.org/html/xhtml/unterschiede.htm#script_style
Mathias
Hallo,
in XHTML sind die Scriptblöcke CDATA
<![CDATA[
document.write('<p>test</p>');
]]>
super, das war es :-)
mfg
Twilo
Vielleicht akzeptiert der Validator das '' nicht für Strings, sondern nur für Zeichen.
Nach irgendeinem alten ECMA-Standart soll man für Zeichen 'c' nehmen und für Strings "ccc" nehmen (Obwohl heutzutage alle Browser beides für Strings akzeptieren).