用id和用元素标签都是可以的
var $strHTML = $("#hidstr:hidden").val();
$("div").html($strHTML);
</script>
var $strHTML = $("input:hidden").val();
$("div").html($strHTML);
</script>
var $strHTML = $("#hidstr:hidden").val();
$("div").html($strHTML);
</script>
var $strHTML = $("input:hidden").val();
$("div").html($strHTML);
</script>
2016-04-08
//$("li:has('label')").css("background-color", "blue");
// $("li label").css("background-color", "blue");
//$("li>label").css("background-color", "blue");
//$("li:contains('妹纸')").css("background-color", "blue");
根据变成蓝色的不同大小可以判断几种不同的写法表示不同的意义
// $("li label").css("background-color", "blue");
//$("li>label").css("background-color", "blue");
//$("li:contains('妹纸')").css("background-color", "blue");
根据变成蓝色的不同大小可以判断几种不同的写法表示不同的意义
2016-04-08
$("form").validate({rules:{required:true,email:true}},errorPlacement:function(error,element){error.appendTo("span");});
2016-04-08
$(document).ready(function()
{
var c=true;
$("li:gt(4)").hide();
$("a").click(function(){
if (c==true){
$("li:gt(4)").show();
$("a").html("简化");
c=false;
}else{
$("li:gt(4)").hide();
$("a").html("更多");
c=true;
}
});
});
{
var c=true;
$("li:gt(4)").hide();
$("a").click(function(){
if (c==true){
$("li:gt(4)").show();
$("a").html("简化");
c=false;
}else{
$("li:gt(4)").hide();
$("a").html("更多");
c=true;
}
});
});
<script type="text/javascript">
$("#btntest").attr("disabled","true");
</script>
$("#btntest").attr("disabled","true");
</script>
2016-04-07
$("#litest").html($("form").serialize()); 运行结果和它提示的结果不一样
2016-04-07