JaveScript-简介
1、JaveScript:脚本语言。(弱类型语言)可以写在head,也可以写在head里,同样可以写在html外面
<script src=""></script>引用外部样式用法src
<script type="text/javascript"></script>
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> <html xmlns="http://www.w3.org/1999/xhtml"> <head> <meta http-equiv="Content-Type" content="text/html; charset=utf-8" /> <title>无标题文档</title> <script type="text/javascript"> </script> </head> <body> <script></script> </body> <script></script> </html> <script></script>
2、常用对话框
alert(“”)
<body> <script> alert("中病毒,需要重启") </script> </body>
confirm(“”)
<body> <script> confirm("中病毒,需要重启") </script> </body>
prompt(“”)
<body> <script> prompt("中病毒,需要重启","是还是否") </script> </body>
3、注释(js注释)
//注释一行
//*注释多行*//
4、数据类型
引用型
对象object
字符串string
值类型
字符 (强类型语言)char;(弱类型语言)var
小数decimal:单精度(小数点后一位)float;双精度(小数点后两位)double
整型;整数int
日期时间datetime
布尔型bool(判断true/false)
货币money