bug 2: 显示效果不符
练习题目中对 <ul> 做了隐藏处理。
要想实现练习题中要求的效果, 需要<ul> 也做show,hide 的处理。
比如:
$("ul").hide();
$("ul").show();
练习题目中对 <ul> 做了隐藏处理。
要想实现练习题中要求的效果, 需要<ul> 也做show,hide 的处理。
比如:
$("ul").hide();
$("ul").show();
2015-02-09
bug 报告:
bug 1: 语法错误:
h4
{
background-color: #eee;
padding: 5px;
margin: 0px;
}
}
# style.css 中 24 行,有多余的},
bug 1: 语法错误:
h4
{
background-color: #eee;
padding: 5px;
margin: 0px;
}
}
# style.css 中 24 行,有多余的},
2015-02-09
如果我们把cookies的path属性设置成“/”。在指定路径的时候,凡是来自同一服务器,URL里有相同路径的所有WEB页面都可以共享cookies。
2015-02-08
答案有点问题:
方法1:$("#content").removeClass();
方法2:$("#content").removeClass("blue white");
2种方法都可以实现效果,方法2 更胜一筹。答案却只允许方法1。
方法1:$("#content").removeClass();
方法2:$("#content").removeClass("blue white");
2种方法都可以实现效果,方法2 更胜一筹。答案却只允许方法1。
2015-02-08
function changes(){
var a_text = $("a").html();
if($("a").html() == "more"){
$("li:hidden").show();
$("a").html("short");
}else{
$("li:eq(0),li:eq(1)").hide();
$("a").html("more");
}
}
var a_text = $("a").html();
if($("a").html() == "more"){
$("li:hidden").show();
$("a").html("short");
}else{
$("li:eq(0),li:eq(1)").hide();
$("a").html("more");
}
}
$(function () {
$("h4").bind("mouseover", function () {
$("ul").show("slow");
});
$("h4").bind("mouseout",function () {
$("ul").hide("slow");
});
});
$("h4").bind("mouseover", function () {
$("ul").show("slow");
});
$("h4").bind("mouseout",function () {
$("ul").hide("slow");
});
});
2015-02-08
# filename: style.css
.bg_red
{
background-color: blue;
color:Orange;
}
应该及时纠正一下了。。
.bg_red
{
background-color: blue;
color:Orange;
}
应该及时纠正一下了。。
2015-02-07