我需要知道如何做到这一点,以便从收音机图像生成链接到我表单中的下一个按钮。我有原始代码,当检查每个问题的所有三个问题或单选按钮时,它会生成一个链接并且该按钮变得可点击。我向其中添加了图像,它们是可点击的,但是正在生成指向下一个按钮的链接,以便可以点击它。如果您可以提供帮助,请使用详细示例,因为我是 javascript 新手。
这是带有图像单选按钮的代码:http: //jsfiddle.net/P74tn/1/
文档的 HTML:
<form name="quiz" id='quiz'>
<h4>What carrier do you have?</h4>
<div class="radio" id="form">
<div style="list-style: none;" onclick=tryToMakeLink(); name="q1" value="AT&T"><img
width="50px" height="50px" src="http://wepriceit.webs.com/ipad-5-image.jpg" /></div>
<div style="list-style: none;" onclick=tryToMakeLink(); name="q1" value="Other">
<img width="50px" height="50px" src="http://wepriceit.webs.com/ipad-5-image.jpg" />
</div>
<div style="list-style: none;" onclick=tryToMakeLink(); name="q1" value="Unlocked">
<img width="50px" height="50px" src="http://wepriceit.webs.com/ipad-5-image.jpg" />
</div>
</div>
<br /><br /><br />
<h4>What is your phones capicity?</h4>
<div class="radio" id="form">
<div style="list-style: none;" type="radio" onclick=tryToMakeLink(); name="q2"
value="8GB"><img width="50px" height="50px" src="http://wepriceit.webs.com/ipad-5-
image.jpg" /></div>
<div style="list-style: none;" type="radio" onclick=tryToMakeLink(); name="q2"
value="16GB"><img width="50px" height="50px" src="http://wepriceit.webs.com/ipad-5-
image.jpg" /></div>
</div>
<br /><br /><br />
<h4>What color is your phone?</h4>
<div class="radio" id="form">
<div style="list-style: none;" type="radio" onclick=tryToMakeLink(); name="q3"
value="Black"><img width="50px" height="50px" src="http://wepriceit.webs.com/ipad-5-
image.jpg" /></div>
<div style="list-style: none;" type="radio" onclick=tryToMakeLink(); name="q3"
value="White"><img width="50px" height="50px" src="http://wepriceit.webs.com/ipad-5-
image.jpg" /></div>
</div>
<br>
<div id=linkDiv>
<input type=button disabled=disabled value=Next>
</div>
</form>