Var x;---定义变量

变量定义有多种格式

<!DOCTYPE html>
<html>
<head>
    <meta charset="utf-8">
    <meta name="viewport" content="initial-scale=1.0, maximum-scale=1.0, user-scalable=no" />
    <title>hello world</title>
</head>
<body>
    <script type="text/javascript">
        var me={
             a:2,
             b:3
        }
        alert(me.b)
    </script>
</body>
</html>

Var x;---定义变量

var x=方法;。。。。等等,都是可以的

上一篇:删数问题(NOI94)


下一篇:SQL Server代码的一种学习方法