我想創建一個HTML表單與2嵌套的選擇框,多步選擇框在HTML和Javascript
我想去做的是,
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>
請刪除註釋並將其添加到你的問題,如果有必要 – iConnor
哪裏javacript代碼?請加上 –