$(function () { $("#btnShow").bind("click", function () { var $this = $(this); $.getJSON("Data/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>"); }); }); }) });
2016-03-24
.load("http://www.imooc.com/data/fruit_part.html li",function(){
2016-03-24
$("input *").attr("disabled", "true"); 为什么就不行呢?
2016-03-23
我好挫...
<script type="text/javascript">
$("span").each(function (index) {
if (index == 1) {
$(".green :eq("+index+")").attr("class", "red");
}
});
</script>
<script type="text/javascript">
$("span").each(function (index) {
if (index == 1) {
$(".green :eq("+index+")").attr("class", "red");
}
});
</script>
2016-03-23