$.getScript("http://www.imooc.com/data/sport_f.js",function(){
alert("js文件加载成功");
});
alert("js文件加载成功");
});
2015-03-13
.load("http://www.imooc.com/data/fruit_part.html li",function(){
$this.attr("disabled", "true");
});筛选加载html网页中的所有li元素内容
$this.attr("disabled", "true");
});筛选加载html网页中的所有li元素内容
2015-03-13
//元素绑定全局ajaxStart事件
$("#divMsg").ajaxStart(function() {
$(this).show(); //显示元素
})
//元素绑定全局ajaxStop事件
$("#divMsg").ajaxStop(function() {
$(this).html("请求处理已完成。").hide();
})
$("#divMsg").ajaxStart(function() {
$(this).show(); //显示元素
})
//元素绑定全局ajaxStop事件
$("#divMsg").ajaxStop(function() {
$(this).html("请求处理已完成。").hide();
})
2015-03-13
$("li>label").css("background-color","blue"); //也行啊
2015-03-12