.html("<img src='Images/Loading.gif' alt=''/>")
这段代码没作用,src值找不到吧
这段代码没作用,src值找不到吧
2016-03-07
试了下这个,嵌套只要是外边的就是长辈
$("div label").css("background-color","red");
$("p label").css("background-color","blue");
$("div label").css("background-color","red");
$("p label").css("background-color","blue");
2016-03-07
$("#divload").ajaxStart(function(){
$(this).html("正在请求数据...");
alert("断点");
});//设置断点效果更佳=>alert("断点");多多参考对比同学代码效果真心好
$(this).html("正在请求数据...");
alert("断点");
});//设置断点效果更佳=>alert("断点");多多参考对比同学代码效果真心好
2016-03-07
$("body").append(rethtml());
$("body").append(rethtml);
都可以
$("body").append(rethtml);
都可以
2016-03-07
$("#content").removeAttr("class");//第一种方法
$("#content").removeClass("blue white");//第二种方法
$("#content").removeClass("blue white");//第二种方法
2016-03-07
$(this).attr("class","red");
$("span").each(function(){······})
$("span").each(function(){······})
2016-03-07