bg_red只是增加的类名,而后面的CSS文件才为这个类名设定了样式的
.bg_red
{
background-color: green;
width:159px;
height:42px;
padding:20px;
}
.bg_red
{
background-color: green;
width:159px;
height:42px;
padding:20px;
}
2016-06-27
<ul>
<li>多兰剑</li>
<li>长剑</li>
<li>短剑</li>
<li>死刑宣告</li>
<a style="cursor:pointer">更多</a>
<li class="hidd" style="display:none">暴风之剑</li>
<li class="hidd" style="display:none">黑色切割者</li>
<li class="hidd" style="display:none">无尽之刃</li>
<li>饮血剑</li>
</ul>
<li>多兰剑</li>
<li>长剑</li>
<li>短剑</li>
<li>死刑宣告</li>
<a style="cursor:pointer">更多</a>
<li class="hidd" style="display:none">暴风之剑</li>
<li class="hidd" style="display:none">黑色切割者</li>
<li class="hidd" style="display:none">无尽之刃</li>
<li>饮血剑</li>
</ul>
$(document).ready(function() {
$("li:gt(3)").not("li:last").hide();
$("a").click(function(){
if($("a").html()=="更多"){
$("li").show();
$("a").html("简化");
}else{
$("li:gt(3)").not("li:last").hide();
$("a").html("更多");
}
});
$("li:gt(3)").not("li:last").hide();
$("a").click(function(){
if($("a").html()=="更多"){
$("li").show();
$("a").html("简化");
}else{
$("li:gt(3)").not("li:last").hide();
$("a").html("更多");
}
});
$("#html").html($content);//获取元素的html内容,代码格式也一并获取
$("#text").text($content);//值只获取元素的文本内容,并不包含html格式代码。
$("#text").text($content);//值只获取元素的文本内容,并不包含html格式代码。
2016-06-27
appendTo()括号里面的内容,可以是元素名称,也可以是筛选的对象:
$($html).appendTo($("#bbb"));
$($html).appendTo($("#bbb"));
2016-06-27