摘要: js的一些变量命名规则:(1)首字符不能是数字、可以是美元符号 $ 以及下划线 _(2)由字母、数字、下划线、美元符号组成(3)区分大小写注意:在函数中定义变量时,没写 var 则是全局变量。HTML代码: 1 <html xmlns="http://www.w3.org/1999/xhtml"> 2 <head> 3 <title></title> 4 <script type="text/javascript"> 5 6 function fn1() { 7 _test = "He 阅读全文
posted @ 2012-08-11 15:53 st_gloden 阅读(875) 评论(0) 推荐(0) 编辑