Also Leute ich hab ein kleines Problem...und zwar möchte ich CSS in eine JAVA-Code einbinden
HTML
<html>
<head>
<title>Berichtigung</title>
<link rel="stylesheet" type="text/css" href="standard.css">
<script language="JavaScript">
<!--
function warenkorb()
{
var pr = new Array(4)
var besch = new Array(4)
var Preis = 0
if(document.produkt.Produkt1.checked){
Preis = Preis + 100;
pr[0]=100;
besch[0]="Produkt1";
}else
{pr[0]="";
besch[0]="";
}
if(document.produkt.Produkt2.checked){
Preis = Preis + 200;
pr[1]=200;
besch[1]="Produkt2";
}else
{pr[1]="";
besch[1]="";
}
if(document.produkt.Produkt3.checked){
Preis = Preis + 300;
pr[2]=300;
besch[2]="Produkt3";
}else
{pr[2]="";
besch[2]="";
}
if(document.produkt.Produkt4.checked){
Preis = Preis + 400;
pr[3]=400;
besch[3]="Produkt4";
}else
{pr[3]="";
besch[3]="";
}
var text="[b]Warenkorb[/b]
<table border=1>";
for(var i=0; i<=3; i++)
{
text = text + "<tr><td>" +besch[i]+ "</td><td>" +pr[i]+ "</td></tr>";
}
text = text + "<tr><td align='right'>Gesamtpreis:</td><td>" +Preis+ "</td></tr>";
text = text + "</table>";
document.write(text);
}
-->
</script>
</head>
<body>
<table border="0">
<form name="produkt" method="post" onsubmit="return warenkorb()">
<tr>
<td></td>
<td><div class="chap">Produktbeschreibung</div></td>
<td><div class="chap">Preis</td>
</tr>
<tr>
<td><input type="checkbox" Value="Produkte" Name="Produkt1"></td>
<td><div class="inhalt1">Produkt 1</div></td>
<td>€<span class="preis"> 100,-</span></td>
</tr>
<tr>
<td><input type="checkbox" Value="Produkte" Name="Produkt2"></td>
<td><div class="inhalt2">Produkt 2</div></td>
<td>€<span class="preis"> 200,-</span></td>
</tr>
<tr>
<td><input type="checkbox" Value="Produkte" Name="Produkt3"></td>
<td><div class="inhalt1">Produkt 3</div></td>
<td>€<span class="preis"> 300,-</span></td>
</tr>
<tr>
<td><input type="checkbox" Value="Produkte" Name="Produkt4"></td>
<td><div class="inhalt2">Produkt 4</div></td>
<td>€<span class="preis"> 400,-</span></td>
</tr>
</table>
<input type="Submit" name="Warenkorb" Value="Warenkorb">
</form>
</body>
</html>
Alles anzeigen
der css-code:
und den möchte ich da einfügen:
Code
text = text + "<tr><td align='right'><div class="text">Gesamtpreis:</div></td><td>" +Preis+ "</td></tr>";
mein Editor sagt mir denn das ich 2 ";" setzten muss:
Code
text = text + "<tr><td align='right'><div class=";text;">Gesamtpreis:</div></td><td>" +Preis+ "</td></tr>";
wenn ich das aber tu dann gibt er mir nichts mehr aus...
kann mir einer helfen?
gruß valefor