如何在html表单上显示要选择的图像?

时间:2014-03-25 15:24:41

标签: php html selectlist

我希望显示类似选项的内容,但使用图片而不是文字。那可能吗? 我通过php获取图像src。一旦你选择了一个图像,我想让他的src提交我的表格。

2 个答案:

答案 0 :(得分:2)

希望这会有所帮助......

<select name="selectBox1">
  <option value="img1.png" style="background-image:url(img1.png);">male</option>
  <option value="img2.png" style="background-image:url(img2.png);">female</option>
  <option value="img2.png" style="background-image:url(img3.png);">others</option>
</select> 

在提交表单时,您将在$_POST["selectBox1"]发布变量中获得所选值。

感谢。

答案 1 :(得分:0)

您可以使用

background-image:url(url here)