加载配置文件别忘了,300字不够写
函数放在script中 加载页面时触发
$(function(){var sc =[{"name":"one","score":"54"},
{"name":"two","score":"89"},
{"name":"the","score":"78"}]
$("ul").append("<li>打印份数</li>");
$.each(sc,function(index){
$("ul").append("<li>name:"+sc[index].name+"score:"+ sc[index].score+ "</li>"); }); });
函数放在script中 加载页面时触发
$(function(){var sc =[{"name":"one","score":"54"},
{"name":"two","score":"89"},
{"name":"the","score":"78"}]
$("ul").append("<li>打印份数</li>");
$.each(sc,function(index){
$("ul").append("<li>name:"+sc[index].name+"score:"+ sc[index].score+ "</li>"); }); });
$("a").click(function(){
if($("a").html()=="更多"){
$("a").html("简化");
$("li:hidden").show();
}else{
$("a").html("更多");
$("li:eq(4)").css("display","none");
$("li:eq(5)").css("display","none");
}
})
if($("a").html()=="更多"){
$("a").html("简化");
$("li:hidden").show();
}else{
$("a").html("更多");
$("li:eq(4)").css("display","none");
$("li:eq(5)").css("display","none");
}
})
$("a").click(function(){
if($("a").html()=="更多"){
$("a").html("简化");
$("li:hidden").show();
}else{
$("a").html("更多");
$("li:eq(4)").css("display","none");
$("li:eq(5)").css("display","none");
}
})
if($("a").html()=="更多"){
$("a").html("简化");
$("li:hidden").show();
}else{
$("a").html("更多");
$("li:eq(4)").css("display","none");
$("li:eq(5)").css("display","none");
}
})
$("#divload").ajaxStart(function(){
$(this).html("正在请求数据...");
});
$("#divload").ajaxStop(function(){
$(this).html("数据请求完成!");
});
$(this).html("正在请求数据...");
});
$("#divload").ajaxStop(function(){
$(this).html("数据请求完成!");
});
2015-06-11
$.ajaxSetup(
{
dataType:"text",
success:function(data)
{
{
dataType:"text",
success:function(data)
{
2015-06-11
$.post("http://www.imooc.com/data/check_f.php",{
num:$("#txtNumber").val()
},
num:$("#txtNumber").val()
},
2015-06-11
『注意:jquery1.8以上只能绑定到$(document)上:$(document).ajaxStart(function(){})』
2015-06-11
,而通过prev + next选择器就可以查找与“prev”元素紧邻的下一个“next”元素,格式如下:
$(“prev + next”)
$(“prev + next”)
2015-06-10
<body>
<div class="red">选我吧!我是red</div>
<div class="green">选我吧!我是green</div>
<div class="blue">选我吧!我是blue</div>
<script type="text/javascript">
$(".red,.green").html("hi,我们的样子很美哦!");
</script>
</body>
<div class="red">选我吧!我是red</div>
<div class="green">选我吧!我是green</div>
<div class="blue">选我吧!我是blue</div>
<script type="text/javascript">
$(".red,.green").html("hi,我们的样子很美哦!");
</script>
</body>
2015-06-10