课程
/前端开发
/jQuery
/jQuery基础课程
done
2014-11-10
源自:jQuery基础课程 8-2
正在回答
$(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>");
});
})
举报
加入课程学习,有效提高前端开发速度