function
{
sum = x + y +z;
document.write(x+"、"+y+"、"+z+"和:"+sum+"<br/>");
}
为什么要这样写?x+"、"+y+"、"+z+"和:"+sum+"
我试了一下把+去掉就不行
+连接字符串用,x是变量。引号引起来的是字符串。