摘要: 一、数据类型 1.字符串(String) var mood = “happy”; var mood = ‘happy’; 2.数值(number) var age = 25; var price = 33.25; 3.布尔类型 (boolean) 布尔型数据只能有两种种值 true 和 false; 阅读全文
posted @ 2016-09-01 21:01 蔚201388 阅读(359) 评论(0) 推荐(0) 编辑
摘要: 引入的三种方法: 1、将javascript代码插入html文档<head>部分的<script>标签中 例:<head> <script type=“text/javascript”> //javascript 代码 alert(‘hello world’); </script> </head> 阅读全文
posted @ 2016-09-01 21:00 蔚201388 阅读(89) 评论(0) 推荐(0) 编辑