我在我的网站上嵌入了这个 html 按钮,但它不起作用
I embedded this html button on my website but it doesn't work
可能的原因是什么?
<!-- # # Code # # -->
<div class="link-item-wrapper">
<a href="https://www.instagram.com/theWhosebug/" >
<img src="https://www.instagram.com/static/images/ico/apple-touch-icon-76x76-precomposed.png/666282be8229.png" >
</div>
<!-- # # # # # # # -->
观察:
- 按钮可以点击但什么都不做...
- 鼠标中键可以正常打开网站。
- 将鼠标悬停在左下角会正确显示网站。
它在 firefox 中对我有用,但你应该在 img
之后明确关闭 a
标签。
<div class="link-item-wrapper">
<a href="https://www.instagram.com/theWhosebug/">
<img src="https://www.instagram.com/static/images/ico/apple-touch-icon-76x76-precomposed.png/666282be8229.png">
</a>
</div>
可能的原因是什么?
<!-- # # Code # # -->
<div class="link-item-wrapper">
<a href="https://www.instagram.com/theWhosebug/" >
<img src="https://www.instagram.com/static/images/ico/apple-touch-icon-76x76-precomposed.png/666282be8229.png" >
</div>
<!-- # # # # # # # -->
观察:
- 按钮可以点击但什么都不做...
- 鼠标中键可以正常打开网站。
- 将鼠标悬停在左下角会正确显示网站。
它在 firefox 中对我有用,但你应该在 img
之后明确关闭 a
标签。
<div class="link-item-wrapper">
<a href="https://www.instagram.com/theWhosebug/">
<img src="https://www.instagram.com/static/images/ico/apple-touch-icon-76x76-precomposed.png/666282be8229.png">
</a>
</div>