$("li:visible").css("background-color","blue");
2014-11-28
$("li:has('label')").css("background-color", "blue");
2014-11-28
$("li:contains(jQuery)").css("background", "green");
2014-11-28
$("li:eq(2)").css("background-color", "#60F");
2014-11-28
$("#default").html是设置default处内容 ($("#divtest").html());是得到divtest处内容
2014-11-27
<?php
$num = $_POST["num"];
if($num > 0)
echo "大于0";
else
echo "小于0";
?>
$num = $_POST["num"];
if($num > 0)
echo "大于0";
else
echo "小于0";
?>
2014-11-27
$("li:last").css("background-color", "red");
2014-11-27
为什么我打开http://jquery.com/download/点开下载链接,屏幕显示满满的代码而没有弹出选择下载保存路径的框?
$("p~label").css("border", "solid 1px red");
$("p~label").html("我们都是p先生的粉丝");
$("p~label").html("我们都是p先生的粉丝");
2014-11-27
$("p+label").css("background-color","#267767");
2014-11-27