1.通过param方法将对象转为 url 查询时候的字符串
<script>
$(document).ready(function(){
personObj=new Object();
personObj.firstname="John";
personObj.lastname="Doe";
// 输出:firstname=John&lastname=Doe
alert($.param(personObj));
});
</script>
2.通过jsonp 实现跨越请求(注意下面的 jsoncallback=? 不能少)
<script>
$.getJSON("http://www.runoob.com/try/ajax/jsonp.php?jsoncallback=?", function(data) {
console.log(data);
});
</script>
jquery 全选和反全选
//全选
$(".selecte_all").click(function(){
if($(this).is(":checked")){
$(":checkbox").prop("checked",true);
}else{
$(":checkbox").prop("checked",false);
}
});