![]() |
Kein Valides HTML obwohl valides html
Hi,
das ist ein js und wird vom w3c parser fälschlicherweise als falsches html ausgegeben:
Code:
vermutlich weil der string unterbrochen ist. hat jemand ne idee wie ich das verhindern könnte? lebendes beispiel: meine webseite
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); } ![]() *MFG* |
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:
und wenn das immernoch nicht durchgeht, dann mußt du noch die Taganfänge splitten
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);
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" |
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