已采纳回答 / 笨妮儿
第一个 检查你最后一个input后是否还有其他非input标签,br之类的都不行第二个应该这样写$("input:first,input:last").addClass("bg_blue");第三个has里面的应该是元素名称 你这样写取到的是元素本身吧
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
最新回答 / UncleKeith
$($html).replaceAll("span");这个主要是用<span>元素来替换$html的元素。 包括了<span>本身$("span").html($html);当html()时是获取span元素的内容,包括html标记当html($html)时是设置span元素的内容。当然不会改变span元素
2016-01-27