如何把&#34;一个href链接&#34;进入<div>?

时间:2016-12-12 23:05:16

标签: html image

<div id='machineanimation' style='float:right;background:none !important; margin-right:36px;'>
  <a href="onet.pl">
    <img src='./pix/foto0.png' alt='' />
  </a>
  <img src='./pix/foto1.png' alt='' />
  <img src='./pix/foto2.png' alt='' />

</div>

我看到了一些主题,但我不明白该怎么做。我想点击照片,然后它会将我的网站更改为其他网站,但是我在如何操作方面遇到了麻烦

1 个答案:

答案 0 :(得分:0)

好的,我想我明白你想要什么。看起来你想要一个图像是一个超链接。您的代码应该有效,因此如果图像显示,您的问题必须在href属性中。如果图像未显示,请尝试检查src属性。尝试将href更改为google,只是为了测试。我把一个小提琴放在一起,以证明你的代码有效:here

<div id='machineanimation' style='float:right;background:none !important; margin-right:36px;'>
    <a href="onet.pl">
        <img src='https://www.123freevectors.com/wp-content/uploads/new/icon/075-smiley-face-vector-art-free-download-l.png' alt='' />
    </a>
    <img src='./pix/foto1.png' alt='' />
    <img src='./pix/foto2.png' alt='' />
    <img src='./pix/foto3.png' alt='' />
    <img src='./pix/foto4.png' alt='' />
</div>

如您所见,我所做的就是修改图像源。

因为它适用于不同的图像,故障最可能在于图像src属性。检查一下以确认它是否正确。

注意:

不建议使用内联样式。