不用var定的变量应该算成全局变量。
举个例子:
<html>
<head>
<script language="javascript">
function test1(m){
x = m;
alert(x);
}
function test2(){
alert(x);
}
</script>
</head>
<body>
<button type="button" onclick="test1('ssss')">test1</button>
<button type="button" onclick="test2()">test2</button>
</body>
</html>
直接点击test2按钮,会报错,先点test1,在点test2就可以执行了。
但是严重的不推荐这么做,应为有你定义的变量可能可别的js放生冲突。
温馨提示:内容为网友见解,仅供参考