【发布时间】:2016-02-15 21:28:24
【问题描述】:
我有 3 组问题。在任何给定时间,我都只显示其中一个。如何从显示的问题集中找到所选问题的价值?
<div id = "insert_questions" style="display: none">
<b><p>Questions on Insert Operation</p></b>
<form action="">
<input type="radio" name="radio" value="i1" checked="checked">Insert 44 to the binary search tree.<br>
Output: <textarea class="scrollabletextbox" id="answeri1" readonly></textarea>
<input type ="button" onclick="currentAlg.submitAnswer()" value="Submit" />
<input type ="button" onclick="currentAlg.resetAnswer()" value="Reset" /><br><br>
<input type="radio" name="radio" value="i2">Insert 56 to the binary search tree.<br>
Output: <textarea class="scrollabletextbox" id="answeri2" readonly></textarea>
<input type ="button" onclick="currentAlg.submitAnswer()" value="Submit" />
<input type ="button" onclick="currentAlg.resetAnswer()" value="Reset" /><br><br>
<input type="radio" name="radio" value="i3">Insert 68 to the binary search tree.<br>
Output: <textarea class="scrollabletextbox" id="answeri3" readonly></textarea>
<input type ="button" onclick="currentAlg.submitAnswer()" value="Submit" />
<input type ="button" onclick="currentAlg.resetAnswer()" value="Reset" /><br><br>
<input type="radio" name="radio" value="i4">Mark the parent node of the newly added node?<br>
Output: <textarea class="scrollabletextbox" id="answeri4" readonly></textarea>
<input type ="button" onclick="currentAlg.submitAnswer()" value="Submit" />
<input type ="button" onclick="currentAlg.resetAnswer()" value="Reset" /><br><br>
<br><input type="radio" name="radio" value="i5">What is the height of the newly formed tree?<br>
Output: <textarea class="scrollabletextbox" id="answeri5"></textarea>
<input type ="button" onclick="currentAlg.submitAnswer()" value="Submit" />
<input type ="button" onclick="currentAlg.resetAnswer()" value="Reset" /><br>
</form>
</div>
<div id = "delete_questions" style="display: none">
<b><p>Questions on Delete Operation</p></b>
<form action="">
<input type="radio" name="radio" value="d1" checked="checked">Delete the root of the tree<br>
Output: <textarea class="scrollabletextbox" id="answerd1" readonly></textarea>
<input type ="button" onclick="currentAlg.submitAnswer()" value="Submit" />
<input type ="button" onclick="currentAlg.resetAnswer()" value="Reset" /><br>
<input type="radio" name="radio" value="d2">Delete the 3rd largest value in the remaining tree<br>
Output: <textarea class="scrollabletextbox" id="answerd2" readonly></textarea>
<input type ="button" onclick="currentAlg.submitAnswer()" value="Submit" />
<input type ="button" onclick="currentAlg.resetAnswer()" value="Reset" /><br>
<input type="radio" name="radio" value="d3">Mark the child node(s), if any, of the node which replaced the deleted node in (2).<br>
Output: <textarea class="scrollabletextbox" id="answerd3" readonly></textarea>
<input type ="button" onclick="currentAlg.submitAnswer()" value="Submit" />
<input type ="button" onclick="currentAlg.resetAnswer()" value="Reset" /><br>
<input type="radio" name="radio" value="d4">What is the height of the newly formed tree?<br>
Output: <textarea class="scrollabletextbox" id="answerd4" readonly></textarea>
<input type ="button" onclick="currentAlg.submitAnswer()" value="Submit" />
<input type ="button" onclick="currentAlg.resetAnswer()" value="Reset" /><br>
</form>
</div>
<div id = "misc_questions" style="display: none">
<b><p>Miscellaneous questions</p></b>
<form action="">
<input type="radio" name="radio" value="m1" checked="checked">Do the inorder traversal of tree.<br>
Output: <textarea class="scrollabletextbox" id="answerm1" readonly></textarea>
<input type ="button" onclick="currentAlg.submitAnswer()" value="Submit" />
<input type ="button" onclick="currentAlg.resetAnswer()" value="Reset" /><br>
<input type="radio" name="radio" value="m2">Do the preorder traversal of tree.<br>
Output: <textarea class="scrollabletextbox" id="answerm2" readonly></textarea>
<input type ="button" onclick="currentAlg.submitAnswer()" value="Submit" />
<input type ="button" onclick="currentAlg.resetAnswer()" value="Reset" /><br>
<input type="radio" name="radio" value="m3">Do the postorder traversal of tree.<br>
Output: <textarea class="scrollabletextbox" id="answerm3" readonly></textarea>
<input type ="button" onclick="currentAlg.submitAnswer()" value="Submit" />
<input type ="button" onclick="currentAlg.resetAnswer()" value="Reset" /><br>
<input type="radio" name="radio" value="m4">Mark the lowest common ancestor of the first two leaf nodes(from left)?<br>
Output: <textarea class="scrollabletextbox" id="answerm4" readonly></textarea>
<input type ="button" onclick="currentAlg.submitAnswer()" value="Submit" />
<input type ="button" onclick="currentAlg.resetAnswer()" value="Reset" /><br>
</form>
</div>
【问题讨论】:
标签: javascript html radio-button radiobuttonlist