如何在验证后使用JavaScript和HTML5将图像放在单选按钮上

时间:2016-08-16 15:35:46

标签: javascript html radio-button radio

我需要在验证问题后将叠加图像放到单选按钮上。如果答案是正确的,则会出现单选按钮上方的勾号,如果出错则会出现错误答案中的十字和右侧的勾号。 所有这些都使用JS和HTML。

代码已经有效,我只需要放置图像。

有什么想法吗?谢谢!

1 个答案:

答案 0 :(得分:0)

你需要使用z-index(css)和隐藏。你是什​​么代码?

 img {
 position: absolute;
 left: 0px;
 top: 0px;
 z-index: -1; 
 }
<img src="http://www.ultracurioso.com.br/wp-content/uploads/2015/09/2110.jpg" width="200">

<p>the image has a z-index of -1, your button/html code has overlay</p>

</body>
</html>