gpt4 book ai didi

html - 足够的 CSS 选择器 1 嵌套元素向上

转载 作者:太空宇宙 更新时间:2023-11-03 23:30:57 25 4
gpt4 key购买 nike

使用 CSS 选择器,我想在单击链接时在 div 元素周围放置一个框阴影。

    <!DOCTYPE html>
<html>
<body>
<div class="container">
<div id="selected_div">
<a><p id="click"></p></a>
</div>
</div>
</body>
</html>

我不知道该使用哪个选择器。请赐教。

最佳答案

考虑到您想根据点击执行操作,无论如何最好使用 Javascript。 CSS 没有父级选择器,因此无法检测到点击。这是 jQuery 解决方案:

$("document").ready(function() {
$("#selected_div a").click(function() {
$(this).parent().css("box-shadow", "2px 2px 3px #fff");
}
}

记得包含 jQuery 库。

关于html - 足够的 CSS 选择器 1 嵌套元素向上,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/25369403/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com