$(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) {
$("ul").append("<li>" + sport["name"] + "</li>");
});
});
})
});
$("#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) {
$("ul").append("<li>" + sport["name"] + "</li>");
});
});
})
});
2017-03-09
$(function () {
$("#btnShow").bind("click", function(){
var $this = $(this);
$("ul")
.html("<img src='Images/Loading.gif' alt=''/>")
.load("url", function () {
$this.attr("disabled","true");
});
})
});
$("#btnShow").bind("click", function(){
var $this = $(this);
$("ul")
.html("<img src='Images/Loading.gif' alt=''/>")
.load("url", function () {
$this.attr("disabled","true");
});
})
});
2017-03-08