如何使用 jquery 将图像添加到 div 顶部
我有一个可拖动的空 div,我需要在其左上角添加图像并且它应该能够与 div 一起移动。
那么我该怎么做呢?
<div class="example">
<div>
这是脚本:
<script type="text/javascript">
$(function () {
$('.example').draggable
});
</script>
I have an empty div which is draggable and to which I need to add an image to the left top corner And it should be able to move along with the div.
So how do I do that?
<div class="example">
<div>
This is the script:
<script type="text/javascript">
$(function () {
$('.example').draggable
});
</script>
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(3)
使图像成为 div 的背景,或者只是在其中放置
标记并添加类
这里是 :before
make the image a background of the div, or just put an
<img>
tag there and add the classhere it is with :before
div 的顶部是前置的。
Top of div is prepend.
只需将图像放入
中,或者动态添加图像,
$('.example').append(image_handle)
。或者使用:before
Just put the image in the
<div>
, or to add it dynamically,$('.example').append(image_handle)
. Or use:before