我会尽快。我正试图将一个元素定位到我的目标附近。通常我们有prepend(在目标之前(和append(在目标之后(。但是,是否有smth可以帮助我们将该元素放在我们的目标上,而不是放在(prepend(之前或之后(append(?
如果您想将新的HTML元素添加到目标。。。我不知道这是否是你想要的。
$('.target-x').html('<div class="target-b">new elements</div>')
.target-x {background:#bbb;padding:10px;}
.target-b {background:#fff;color:#222;}
<script src="https://cdnjs.cloudflare.com/ajax/libs/jquery/3.3.1/jquery.min.js"></script>
<body>
<div class="target-top">Elements</div>
<div class="target-x">New Elements Target</div>
<div class="target-bottom">Elements</div>
</body>
您可以在:before
上使用position:absolute
来将其放置在实际内容上。
HTML
<div class="example">This is an example div</div>
CSS
.example {
background-color: #5BC8F7;
}
.example::before {
position:absolute;
content: "Above!";
background-color: #FFBA10;
}