1搭建环境:
什么都不需要做,只需要一个浏览器就可以,建议使用火狐,googel,ie
2hello the world
因为开始都是示例,我不会用IDE来写,希望大家也不要用,就用记事本来写,让自己可以记住那些常用的函数,范一些常见的错误。
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<!--同样这些内容也会写到消息头里面-->
<script type="text/javascript" charset="utf-8">
window.alert("hello the world!");
</script>
</head>
<body>
</body>
<html>