我的第一个JS程序
今天我刚买一本JS自学书籍,我希望能与大家多多交流,积累经验,相互学习技术啊!我是新手,希望大家多多关照!我用dreamweaver运行第一个js程序
<html>
<head>
<meta http-equiv="content-type content="text/html;charset=GB2312"/>
<title>你好!</title>
<!---脚本部分-->
<script type="text/javascript">
what_to_say="你好!";
alert(what_to_say);
</script>
<body style="overflow:auto:">
</body>
</head>
</html>