在jquery中定义全局变量的方法:1.新建html项目,引入jquery;2.使用var关键字定义全局变量;
具体步骤如下:
1.首先,新建一个html项目,并在项目中引入jquery;
<script type="text/javascript" src="/static/jquery-2.1.4.min.js"></script>
2.引入jquery后,在项目中使用var关键字即可定义全局变量;
$(function () {
var a;
function test(index) {
a=index;
}
alert(a);
}