当我点击其中的复选框时,我想在下面的代码中设置div#main的样式。我只能使用css / css3吗?提前谢谢!
<div id="main">
<div id="content">
<input type="checkbox"/>
</div>
</div>
答案 0 :(得分:1)
你可以玩HTML&amp; CSS。写这样:
<input type="checkbox" id="change"/>
<div id="main">
<div id="content">
<label for="change"></label>
<h2>hello</h2>
</div>
</div>
<强> CSS 强>
#main{
width:100px;
height:100px;
background:red;
text-align:center;
}
input{
display:none;
}
input:checked ~ #main{
border:2px solid green;
font-size:24px;
background:yellow;
}
input:checked ~ #main label{
background:url(http://farm6.static.flickr.com/5182/5840005274_b3bcc52bb1_o.png);
}
label{
background:url(http://farm3.static.flickr.com/2793/5839457953_1690178a65_o.png);
display:block;
width:18px;
height:18px;
}
答案 1 :(得分:0)
HTML
<input type="checkbox" class="checkBox"/>
CSS
.checkBox:checked
{
/* apply any css */
border:solid 1px;
}
答案 2 :(得分:0)
使用此代码:
#main #content input[type="checkbox"]:checked {
/*your styles*/
}
如果你想要#main #content的样式,你应该使用jquery:
$(function () {
$("#chk").change(function () {
if ($(this).is(":checked"))
$("#content").addClass("newClass");
else {
$("#content").removeClass("newClass");
}
});
});
CSS:
.newClass{
width: 100px;
height: 100px;
background-color: red;
}
答案 3 :(得分:0)
使用这个
input[type="checkbox"]:checked #content {
/*your color changing code*/
}
当#content
被解雇时,它会将样式代码应用于input[type="checkbox"]
,即你想要什么