关于参数传参的问题,为什么直接function(data,)是指前面的链接地址的数据。如果把data换成a即function(a,)同样能运行,又是为什么,此时a也能指前面的链接地址数据?
<script type="text/javascript">
$(function () {
$("#btnShow").bind("click", function () {
var $this = $(this);
$.getJSON("http://www.imooc.com/data/sport.json",function(data){
$this.attr("disabled", "true");
$.each(data, function (index, sport) {
if(index==3)
$("ul").append("<li>" + sport["name"] + "</li>");
});
});
})
});
</script>