我想创建一个带有 2 个嵌套选择框的 html 表单,
我想那样做,
1个选择框,用户可以选择现代或古代。我做的 ;
如果用户选择古,新的选项是:
Age : (textfield)
Determined By: (text field)
Age By c-14 testing
和,
If C14 testing is performed
Name of the body performing the test
Date of testing
到目前为止,这是我的 HTML:
<select name="storedinage" id="storedinage" onchange="showfield7(this.options[this.selectedIndex].value)">
<option>Please Select</option>
<option value="Modern" >Modern</option>
<option value="Ancient" >Ancient </option>
我的 JavaScript 在这里:
<script type="text/javascript">
function showfield7(name){
if(name=='Ancient')document.getElementById('div7').innerHTML='Other: <input type="text" name="storedinage" />';
else document.getElementById('div7').innerHTML='';
}
</script>