$(function(){$("li:gt(3):not(:last)").hide();
$("a").click(function(){
var ea=$("a").html();
if(ea=="更多"){$("a").html("简化");
$("li").show();
}else{$("a").html("更多");
$("li:gt(3):not(:last)").hide();}})})
$("a").click(function(){
var ea=$("a").html();
if(ea=="更多"){$("a").html("简化");
$("li").show();
}else{$("a").html("更多");
$("li:gt(3):not(:last)").hide();}})})
$("#frmTest input:submit")会改变下面两个框
$("#frmTest :submit")只改变中间的框
$("#frmTest :submit")只改变中间的框
2016-04-13
var intI = 0;
$(function () {
$("div").bind("click", function () {
intI++;
$(this).css("font-size", intI + "px");
})
});
这样就可以不停加大字体, var intI = 0;需要定义在函数外面才有用
$(function () {
$("div").bind("click", function () {
intI++;
$(this).css("font-size", intI + "px");
})
});
这样就可以不停加大字体, var intI = 0;需要定义在函数外面才有用
2016-04-13
<script type="text/javascript">
var $html = "<span class='red'>兄弟。</span>"
$(".green").before($html);
$(".green").after($html);
</script>
var $html = "<span class='red'>兄弟。</span>"
$(".green").before($html);
$(".green").after($html);
</script>
2016-04-13