$("#default").html($("#divtest").html());
2016-01-28
我来说吧..post和get是两种php的接收方式.
post更加常用,因为get会让传送的信息显示在网址上,非常不安全.
如果php设置了action="post",那么我们也只能用post传
post更加常用,因为get会让传送的信息显示在网址上,非常不安全.
如果php设置了action="post",那么我们也只能用post传
2016-01-27
$("li:has(label)").css("background-color", "blue");
$("li label").css("background-color", "blue");
$("li>label").css("background-color", "blue");
$("li label").css("background-color", "blue");
$("li>label").css("background-color", "blue");
2016-01-27