我是Web编程的新手,我必须实现以下行为,但是我不知道该怎么做?有人可以给个建议吗?
这是我的网页中的内容:
<p>Departure:
<select id="selPartenza" name="Partenze">
<option disabled selected value>Select an option</option>
<option value="0">Other</option>
<option value="Amsterdam">Amsterdam</option>
<option value="Bucarest">Bucarest</option>
<option value="Cuba">Cuba</option>
</select>
</p>
<textarea id="textP" placeholder="Insert here the departure address if it isn't in the previously queue."></textarea>
<br><br>
<script>
$('#selPartenza').on('change', function(){
if(this.value != 0)
$('#textP').prop('disabled', true)
else
$('#textP').prop('disabled', false)
});
</script>
<p>Arrival:
<select id="selDestinazione" name="Destinazioni">
<option disabled selected value>Select an option</option>
<option value="0">Other</option>
<option value="Rome">Rome</option>
<option value="Turin">Turin</option>
<option value="Barcelona">Barcelona</option>
</select>
</p>
<textarea id="textD" placeholder="Insert here the arrival address if it isn't in the previously queue."></textarea>
<br><br>
<script>
$('#selDestinazione').on('change', function(){
if(this.value != 0)
$('#textD').prop('disabled', true)
else
$('#textD').prop('disabled', false)
});
</script>
<p>Number of passengers:
<select id="selDestinazione">
<option value="1">1</option>
<option value="2">2</option>
<option value="3">3</option>
</select>
</p>
<button id="prenotaButton" type="submit" class="button">Book</button>
我想将“到达”中选择的值保存在php变量$Partenza
中,将“出发”中选择的值保存在php变量$Destinazione
中,将“乘客”中选择的值保存在php变量{ {1}}。如果选择“其他”,则必须从文本区域而不是下拉菜单中获取所需的值。我需要三个php变量中的这些值,因为单击按钮启动事务并与数据库进行交互时必须使用它们。 select和textarea不会被表单标签包围。
我能怎么做?谢谢您的帮助。