**CSS**
#child:focus > #parent {
color: white;
}
**HTML**
<div id="parent">
<div id="child">
</div>
</div>
这是当孩子专注时为父母应用样式的正确方法吗?
编辑:我的问题是我需要将这些样式应用于小设备。所以我不能使用jQuery。这就是为什么我在CSS中尝试在媒体查询中尝试。
首先,您需要在Divs中添加tabindex
属性,或者它们永远无法接收焦点。
我还包括了当孩子失去焦点时从父母那里删除CSS类的代码。
$("#child").focusin(function() {
$(this).parent().addClass("focused");
});
$("#child").blur(function() {
$(this).parent().removeClass("focused");
});
.focused {
background: red;
}
<script src="https://ajax.googleapis.com/ajax/libs/jquery/2.1.0/jquery.min.js"></script>
<div id="parent" tabindex="-1">
Parent Top
<div id="child" tabindex="-1">
Child
</div>
Parent Bottom
</div>
您也可以使用jQuery:
$('#child:focus').parent().addClass('your_class');
css没有选择器的选择级别...您需要解决问题,使用JS
对于此特定需求,是在CSS中实现的:focus-within
pseudoclass。在您的示例中,CSS将执行您尝试完成的工作。我将tabindex
添加到#child
中以使div
聚焦。本质上可集中的元素不需要(例如链接或表单元素)。但是,IE和Edge不支持它。Edge将在计划开关闪烁渲染引擎后支持它。
另请参见此CSS技巧文章。
#parent {
padding: 0.25em;
background-color: crimson;
}
#parent:focus-within {
color: white;
}
<div id="parent">
<h1>Parent</h1>
<div id="child" tabindex="0">
<p>Child (click me!)</p>
</div>
</div>
您可以使用jQuery做到这一点:
$(document).ready(function(){
if ($(window).width() < 960) {
$('.child input').on('focus', function(){
$('.parent').css({
'background-color': 'blue'
});
});
$('.child input').on('blur', function(){
$('.parent').css({
'background-color': 'lightgrey'
});
});
}
});
.parent {
width: 300px;
height: 300px;
display: block;
background: lightgrey;
}
input {
width: auto;
}
<script src="https://ajax.googleapis.com/ajax/libs/jquery/1.12.2/jquery.min.js"></script>
<div class="parent">
<div class="child"><input type="text"></div>
</div>
这是通过与jQuery实现相同的第四级Selecor pseudo-class进行的。
#parent:has(> #child) { /* styles to apply to the #parent */ }
但这目前不受浏览器的支持。
为什么我们没有父级选择器