输出为什么是散步???
怎么不写$.each()和$("ul").append()还能显示 散步
怎么不写$.each()和$("ul").append()还能显示 散步
2017-02-21
$(function () {
$("#btnShow").bind("click", function () {
var $this = $(this);
$.getScript("http://www.imooc.com/data/sport_f.js",function() {
$this.attr("disabled", "true");
$.each(data,function(index,sport){
$("ul").append("<li>"+sport["name"]+"</li>")
})
});
})
});
页面输出:
散步
--each()输出全部
足球
散步
篮球
乒乓球
骑自行车
举报