<script>
$(function(){
var jsonStu=[{name:"a",score:18},{name:"b",score:20}];
$.each(jsonStu,function(index,data){
$("body").append("姓名:"+data["name"]+" 分数:"+data["score"]+"<br>");
});
});
</script>
$(function(){
var jsonStu=[{name:"a",score:18},{name:"b",score:20}];
$.each(jsonStu,function(index,data){
$("body").append("姓名:"+data["name"]+" 分数:"+data["score"]+"<br>");
});
});
</script>
加个for循环有惊喜:<script type="text/javascript">
for(var i=0;i<10;i++){
$("body").append($(".red").clone());
}
</script>
for(var i=0;i<10;i++){
$("body").append($(".red").clone());
}
</script>
2016-05-08
messages:{
email:{
required:"别BB,必须填",
email:"邮件懂?"
}
}
email:{
required:"别BB,必须填",
email:"邮件懂?"
}
}
2016-05-08
$("label + label") 没有取p标签,而是取了连续的两个label的下面一个,是不是只找相邻的下个元素,中间间隔也不算的
2016-05-08
<a href="#" onclick="h()">更多</a> 最好不要分开 不然判断会有空格
var hi=$("li:hidden");
function h()
{
if($("a").html()=="更多")
{
hi.show();
$("a").html("简化");
}
else
{
hi.hide();
$("a").html("更多");
}
}
function h()
{
if($("a").html()=="更多")
{
hi.show();
$("a").html("简化");
}
else
{
hi.hide();
$("a").html("更多");
}
}