我在Google网站上有一个表单作为两个文本字段。我不知道如何实际检索提交的数据。有没有办法在提交表单的特定答案时在网页上显示不同的图像?
这就是我现在所拥有的:
<form action="Interactive Map">
Start Room: <input name="StartRoom" type="text" value="" />
End Room: <input name="EndRoom" type="text" value="" />
<input type="submit" value="Submit" />
</form>
答案 0 :(得分:0)
你应该有一组图像
提交表单后,您可以使用random作为数组图像的索引
示例代码
var arrayImglocation = ['img1.jpg','img2.jpg'];
var rand = arrayImglocation[Math.floor(Math.random() * arrayImglocation.length)];