调用函数
JavaScript 代码(P151)
<Script Language="JavaScript">
function OpenWindow()
{
str="您好,欢迎浏览!";
alert(str);
}
</script>
<body OnLoad="OpenWindow()">