$("#btnAction").bind("click", function () {
$("#litest").html($("form").serialize());
});
$("#litest").html($("form").serialize());
});
2015-05-06
$.post('http://www.imooc.com/data/check_f.php',{num:$('input').val()},
2015-05-05
$("#content").addClass("red white");
style.css 中class red 、white
.red{
background-color: red;
}
.white{
color:white;
}
style.css 中class red 、white
.red{
background-color: red;
}
.white{
color:white;
}
2015-05-05
sibling:兄弟姊妹
$("p~label").css("border", "solid 1px red");
$("p~label").html("我们都是p先生的粉丝");
$("p~label").css("border", "solid 1px red");
$("p~label").html("我们都是p先生的粉丝");
2015-05-05