<script type="text/javascript">
var stifo=[{"name":"小忆",score:"80"},{"name":"小二",score:"85"}];
$.each(stifo,function(index){
$("ul").append("<li>" + stifo[index].name +stifo[index].score +"</li>");
});
</script>
var stifo=[{"name":"小忆",score:"80"},{"name":"小二",score:"85"}];
$.each(stifo,function(index){
$("ul").append("<li>" + stifo[index].name +stifo[index].score +"</li>");
});
</script>
$("p+label").css("background-color","red");
2015-05-27
$("div>label").css("border", "solid 5px red");
2015-05-27
$("div label").css("background-color","blue");
2015-05-27
$(function () {
$("#btntest").bind("click mouseout", function () {
$(this).attr("disabled", "true");
})
});
$("#btntest").bind("click mouseout", function () {
$(this).attr("disabled", "true");
})
});
2015-05-26