Delphi-PRAXiS

Delphi-PRAXiS (https://www.delphipraxis.net/forum.php)
-   Programmieren allgemein (https://www.delphipraxis.net/40-programmieren-allgemein/)
-   -   Kein Valides HTML obwohl valides html (https://www.delphipraxis.net/21007-kein-valides-html-obwohl-valides-html.html)

Meflin 26. Apr 2004 17:18


Kein Valides HTML obwohl valides html
 
Hi,
das ist ein js und wird vom w3c parser fälschlicherweise als falsches html ausgegeben:
Code:
function ToolTip(layerName, TTitel, TInhalt)
{
   ContentInfo = '<table border="0" width="150" cellspacing="0" cellpadding="0"><tr><td width="100%" bgcolor="#000000"><table border="0" width="100%" cellspacing="1" cellpadding="0"><tr><td width="100%" bgcolor='+TitelFarbe+'><table border="0" width="90%" cellspacing="0" cellpadding="0" align="center"><tr><td width="100%"><font class="ToolTipTitel"> '+TTitel+'</font></td></tr></table></td></tr><tr><td width="100%" bgcolor='+TextFarbe+'><table border="0" width="90%" cellpadding="0" cellspacing="1" align="center"><tr><td width="100%"><font class="ToolTipInhalt">'+TInhalt+'</font></td></tr></table></td></tr></table></td></tr></table>';
   InhaltErsetzen(layerName);
}
vermutlich weil der string unterbrochen ist. hat jemand ne idee wie ich das verhindern könnte? lebendes beispiel: meine webseite http://www.acira.net

*MFG*

himitsu 26. Apr 2004 17:35

Re: Kein Valides HTML obwohl valides html
 
zuerst wird im JS-String nicht '/', oder '\' geschrieben, sondern '\/' und '\\'

und dann hat der W3C-Parser einige Macken ;)

Code:
function ToolTip(layerName, TTitel, TInhalt)

   ContentInfo = '<table border="0" width="150" cellspacing="0" cellpadding="0"><tr><td width="100%" bgcolor="#000000"><table border="0" width="100%" cellspacing="1" cellpadding="0"><tr><td width="100%" bgcolor='+TitelFarbe+'><table border="0" width="90%" cellspacing="0" cellpadding="0" align="center"><tr><td width="100%"><font class="ToolTipTitel"> '+TTitel+'<\/font><\/td><\/tr><\/table><\/td><\/tr><tr><td width="100%" bgcolor='+TextFarbe+'><table border="0" width="90%" cellpadding="0" cellspacing="1" align="center"><tr><td width="100%"><font class="ToolTipInhalt">'+TInhalt+'<\/font><\/td><\/tr><\/table><\/td><\/tr><\/table><\/td><\/tr><\/table>';
   InhaltErsetzen(layerName);
und wenn das immernoch nicht durchgeht, dann mußt du noch die Taganfänge splitten
Code:
'<tag ...>'  in   '<'+'tag ...>'
Code:
function ToolTip(layerName, TTitel, TInhalt)

   ContentInfo = '<'+'table border="0" width="150" cellspacing="0" cellpadding="0"><'+'tr><'+'td width="100%" bgcolor="#000000"><'+'table border="0" width="100%" cellspacing="1"

Meflin 26. Apr 2004 18:34

Re: Kein Valides HTML obwohl valides html
 
thx, that has solved the problem ;-)


Alle Zeitangaben in WEZ +1. Es ist jetzt 20:46 Uhr.

Powered by vBulletin® Copyright ©2000 - 2025, Jelsoft Enterprises Ltd.
LinkBacks Enabled by vBSEO © 2011, Crawlability, Inc.
Delphi-PRAXiS (c) 2002 - 2023 by Daniel R. Wolf, 2024-2025 by Thomas Breitkreuz