如何使用 jquery 将图像添加到 div 顶部

发布于 2024-12-12 03:21:38 字数 284 浏览 0 评论 0原文

我有一个可拖动的空 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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(3

终难愈 2024-12-19 03:21:38
    .example {
       position: relative;
    }
    .example .imghandle {
       position: absolute;
       height: 30px;
       width: 30px;
       top: -30px;
       left: -30px;
    }

<div class="example">
   <div class="imghandle"></div>
<div>

使图像成为 div 的背景,或者只是在其中放置 标记并添加类

这里是 :before

    .example {
       position: relative;
    }
    .example .imghandle {
       position: absolute;
       height: 30px;
       width: 30px;
       top: -30px;
       left: -30px;
    }

<div class="example">
   <div class="imghandle"></div>
<div>

make the image a background of the div, or just put an <img> tag there and add the class

here it is with :before

戏舞 2024-12-19 03:21:38

div 的顶部是前置的。

$('.example').prepend('<img src="" />');

Top of div is prepend.

$('.example').prepend('<img src="" />');
云醉月微眠 2024-12-19 03:21:38

只需将图像放入

中,或者动态添加图像,$('.example').append(image_handle)。或者使用 :before

Just put the image in the <div>, or to add it dynamically, $('.example').append(image_handle). Or use :before

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文