我有以下代碼。我有2個選擇選項菜單。每當他們中的任何一個發生變化時,我都想向一個servlet發送一個AJAX請求。通過使用來自servlet的數據,我想把它寫在我的html中。html下拉菜單動態變化
我該怎麼做?
感謝
<div class="p_inforoom">
<input type="hidden" th:value="${hotelDetail.deal.id}" id="dealId" />
<h3>Oda Bilgileri :<b th:text="${hotelDetail.deal.room.name}"></b></h3>
<select name="numberOfNights" id="night" onchange="GetNights(this)">
<option th:each="rooms:${roomsLeft}" th:text="${rooms}" th:value="${rooms}" id="roomLeft" > </option>
</select>
<select name="roomType" id="room" onchange="GetRooms()">
<option class="1" value="1" >Tek kişilik</option>
<option class="2" selected="selected" value="2" >Çift kişilik</option>
</select>
</div>
'th:value =「$ {hotelDetail.deal.id}」'既不是HTML也不是JavaScript,所以如果這是類似於asp或其他東西,請包含這些標籤。 – Joeytje50
İT的thymeleaf從servlet接受對象並將其寫入html中。 Thymeleaf的主要目標是提供創建模板的優雅和格式良好的方式。其標準和SpringStandard方言允許您創建強大的自然模板,可以通過瀏覽器正確顯示,因此也可以用作靜態原型。您還可以通過開發自己的方言來擴展Thymeleaf。 – serkan
好的,銷售情況良好,但我所說的只是將標籤添加到您的問題中,以便人們在點擊問題之前知道此問題的用途。我現在已經爲你添加了它。 – Joeytje50