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

How to put an image on a radio button with JavaScript and HTML5 after being validated

本文关键字:HTML5 图像 单选按钮 JavaScript 经过 验证      更新时间:2023-09-26

我需要在验证问题后将叠加图像放置到单选按钮上。如果答案是正确的,单选按钮上方就会出现一个勾号,如果答案错了,在错误的答案上打叉,在正确的答案上打勾。所有这些都使用JS和HTML。

代码已经工作,所有我需要的是把图像。

任何想法?谢谢!

则需要使用z-index (css)和hidden。你的代码是什么?

 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>