我有這個選擇框,如果我選擇其他文本框將顯示和問題是我放在那裏的數據只有獲得值「其他」,即使我把文本在文本框中唯一的價值它獲得是「其他」,所以你建議我這樣做。 我使用$ _POST ['talent']來獲得價值。獲取選擇的值php
Talent:
<select name="talent" onchange="if(this.value=='other') { this.form['other'].style.visibility='visible' }else { this.form['other'].style.visibility='hidden' };" required/>
<option value="Dancing">Dancing</option>
<option value="Singing">Singing</option>
<option value="other">Other</option>
<input type="text" name="other" style="visibility:hidden;" />
</select>
'$ _POST ['talent']'會給你所選擇的選項的值,而不是文本輸入的值。 –
添加jQuery並添加一個onChange偵聽器,顯示您發佈數據的PHP位置。如果($ _ POST ['talent'] =='other'){//然後從$ _POST ['other']獲得值} –
這就是我之後的 我想獲得在文本框中輸入的值,如果我選擇其他。 – user3840545