Herr Holle
New member
Hallo! Wenn ich die Einträge im <head> einbinde, die eine neue javascript-funktion beschreiben (innerhalb der ersten, die diese neue Seite aufruft), stürzt der msie ab. Ich weiß, dass ich die Einträge zwischen <head>... </head> escapen muss, besonders die </script>-Teile, aber wie genau? So wie hier im Quelltext gehts nämlich noch nicht:
---------------------------------
document.open("text/html");
document.writeln ('<HTML>');
document.writeln ('<HEAD>');
document.writeln ('<meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1">');
document.writeln ('<meta http-equiv="Content-Script-Type" content="text/javascript">');
document.writeln ('<script language="JavaScript" id="chromeless" src="../js/pz_chromeless_2.1.js"><\/script>');
document.writeln ('<script language="JavaScript">');
document.writeln ('function openChromeslessWindow(openUrl, winName, wWidth, wHeight, wPosx, wPosy, wTIT,windowBORDERCOLOR, windowBORDERCOLORsel, windowTITBGCOLOR, windowTITBGCOLORsel,bCenter, sFontFamily, sFontSize, sFontColor)');
document.writeln ('{');
document.writeln ('openchromeless(openUrl,winName, wWidth, wHeight, wPosx, wPosy, wTIT, wTIT ,windowBORDERCOLOR, windowBORDERCOLORsel, windowTITBGCOLOR, windowTITBGCOLORsel,bCenter, sFontFamily, sFontSize, sFontColor);');
document.writeln ('}');
document.writeln ('<\/script>');
document.writeln ('<TITLE>Suchergebnis</TITLE>');
<!--
/*
*/
document.writeln ('</HEAD>');
document.writeln ('<body
usw.
-----------------------------------------
grüße
Herr Holle
---------------------------------
document.open("text/html");
document.writeln ('<HTML>');
document.writeln ('<HEAD>');
document.writeln ('<meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1">');
document.writeln ('<meta http-equiv="Content-Script-Type" content="text/javascript">');
document.writeln ('<script language="JavaScript" id="chromeless" src="../js/pz_chromeless_2.1.js"><\/script>');
document.writeln ('<script language="JavaScript">');
document.writeln ('function openChromeslessWindow(openUrl, winName, wWidth, wHeight, wPosx, wPosy, wTIT,windowBORDERCOLOR, windowBORDERCOLORsel, windowTITBGCOLOR, windowTITBGCOLORsel,bCenter, sFontFamily, sFontSize, sFontColor)');
document.writeln ('{');
document.writeln ('openchromeless(openUrl,winName, wWidth, wHeight, wPosx, wPosy, wTIT, wTIT ,windowBORDERCOLOR, windowBORDERCOLORsel, windowTITBGCOLOR, windowTITBGCOLORsel,bCenter, sFontFamily, sFontSize, sFontColor);');
document.writeln ('}');
document.writeln ('<\/script>');
document.writeln ('<TITLE>Suchergebnis</TITLE>');
<!--
/*
*/
document.writeln ('</HEAD>');
document.writeln ('<body
usw.
-----------------------------------------
grüße
Herr Holle