這是我的JS代碼。Javascript selectbox else if語句
<script type="text/javascript">
function showfield6(name){
if(name=='Other')
document.getElementById('div6').innerHTML='Other: <input type="text" name="pubfer" />';
else
document.getElementById('div6').innerHTML='';
}
</script>
和:
<select name="pubfer" id="pubfer" onchange="showfield6(this.options[this.selectedIndex].value)">
<option selected="selected">Please select ...</option>
<option value="Thesis">Thesis</option>
<option value="Paper">Paper</option>
<option value="Report">Report</option>
<option value="Short Notes">Refrigerator</option>
<option value="Technical Notes">Technical Notes</option>
<option value="Other">Other</option>
</select>
<div id="div6"></div>
我不能else if語句使用。
如何使用我的JS代碼來使用它?
Specimen (Choose)
Bone
Side
Elements
Pathology
Measurements (import) excel
Teeth
Side
Measurements report
Hair
如果用戶選擇「樣本」,打開骨骼,牙齒,頭髮的字段。如果用戶選擇「Bone」,將打開新的文本字段。他們的名字是「邊,元素」等。如果用戶選擇「牙齒」,新的文本字段將打開。
如何創建此表單?
* 「我不能使用else if語句。」 *爲什麼不呢? –
順便說一句,標題不適用於輸入標籤。哦,爲什麼是PHP標記? – Leri
您的代碼與您的示例不符。請舉一個與你的代碼相關的例子。或更新您的代碼。 –