使用 JavaScript 更改元素的图像

发布于 2024-09-14 21:16:09 字数 77 浏览 10 评论 0原文

我有一个容器,在它下面有一个 3 行和一列的表格,每列中都有一个图像。我想做这样的事情,当鼠标悬停时,容器会充满该图像..帮我做到这一点..

i have a container and below it, a table of 3 rows and a column and in each column, there is an image. i want to do such that onmouseover , the container gets filled with that image.. help me do this..

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

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

发布评论

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

评论(1

左耳近心 2024-09-21 21:16:09

下面是如何

$( window ).load(function()
{
  $( 'img' ).hover(function()
  {
    var img_src = $( this ).attr( 'src' );

    var $container = $( '#container' );
    $container.html( '<img src="' + img_src + '" />' );  
  });
});

给容器指定 id 'container'

here is how you will do it

$( window ).load(function()
{
  $( 'img' ).hover(function()
  {
    var img_src = $( this ).attr( 'src' );

    var $container = $( '#container' );
    $container.html( '<img src="' + img_src + '" />' );  
  });
});

give the container the id 'container'

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