|
|
@ -32,7 +32,7 @@
|
|
|
|
</label>
|
|
|
|
</label>
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
<div class="optionLable" id="ticket_type_vip_khomloy">
|
|
|
|
<div class="optionLable" id="ticket_type_vip_khomloy">
|
|
|
|
<input type="radio" value="VIP+Transfer+Dinner" id="vip_khomloy" data-price="179" name="ticket_type" checked>
|
|
|
|
<input type="radio" value="VIP+Transfer+Dinner" id="vip_khomloy" data-price="179" name="ticket_type">
|
|
|
|
<label for="vip_khomloy" style="font-size:18px;">
|
|
|
|
<label for="vip_khomloy" style="font-size:18px;">
|
|
|
|
VIP+Transfer+Dinner
|
|
|
|
VIP+Transfer+Dinner
|
|
|
|
<div class="selectionMemo">
|
|
|
|
<div class="selectionMemo">
|
|
|
@ -41,7 +41,7 @@
|
|
|
|
</label>
|
|
|
|
</label>
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
<div class="optionLable" id="ticket_type_standard_khomloy">
|
|
|
|
<div class="optionLable" id="ticket_type_standard_khomloy">
|
|
|
|
<input type="radio" disabled ="Standard+Transfer+Dinner" id="standard_khomloy" data-price="139" name="ticket_type" value="Standard+Transfer+Dinner">
|
|
|
|
<input type="radio" id="standard_khomloy" data-price="139" name="ticket_type" value="Standard+Transfer+Dinner">
|
|
|
|
<label for="standard_khomloy" style="font-size:18px;">
|
|
|
|
<label for="standard_khomloy" style="font-size:18px;">
|
|
|
|
Standard+Transfer+Dinner
|
|
|
|
Standard+Transfer+Dinner
|
|
|
|
<div class="selectionMemo">
|
|
|
|
<div class="selectionMemo">
|
|
|
@ -426,7 +426,6 @@
|
|
|
|
var ticket_date_november16th = document.getElementById("ticket_date_november16th");
|
|
|
|
var ticket_date_november16th = document.getElementById("ticket_date_november16th");
|
|
|
|
|
|
|
|
|
|
|
|
ticket_date_november15th.addEventListener('click', function () {
|
|
|
|
ticket_date_november15th.addEventListener('click', function () {
|
|
|
|
console.log("ticket_date_november15th clicked");
|
|
|
|
|
|
|
|
// 先移除旧的标签
|
|
|
|
// 先移除旧的标签
|
|
|
|
removeExistingLabels("ticket_type_premium_khomloy", "dynamic-label");
|
|
|
|
removeExistingLabels("ticket_type_premium_khomloy", "dynamic-label");
|
|
|
|
removeExistingLabels("ticket_type_vip_khomloy", "dynamic-label");
|
|
|
|
removeExistingLabels("ticket_type_vip_khomloy", "dynamic-label");
|
|
|
@ -442,6 +441,10 @@
|
|
|
|
if (standardInput) {
|
|
|
|
if (standardInput) {
|
|
|
|
standardInput.disabled = true;
|
|
|
|
standardInput.disabled = true;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
var vip_khomloy = document.getElementById("vip_khomloy");
|
|
|
|
|
|
|
|
if (vip_khomloy) {
|
|
|
|
|
|
|
|
vip_khomloy.checked = true;
|
|
|
|
|
|
|
|
}
|
|
|
|
var premiumInput = document.getElementById("premium_khomloy");
|
|
|
|
var premiumInput = document.getElementById("premium_khomloy");
|
|
|
|
if (premiumInput) {
|
|
|
|
if (premiumInput) {
|
|
|
|
premiumInput.disabled = true;
|
|
|
|
premiumInput.disabled = true;
|
|
|
@ -449,7 +452,6 @@
|
|
|
|
});
|
|
|
|
});
|
|
|
|
|
|
|
|
|
|
|
|
ticket_date_november16th.addEventListener('click', function () {
|
|
|
|
ticket_date_november16th.addEventListener('click', function () {
|
|
|
|
console.log("ticket_date_november16th clicked");
|
|
|
|
|
|
|
|
// 先移除旧的标签
|
|
|
|
// 先移除旧的标签
|
|
|
|
removeExistingLabels("ticket_type_premium_khomloy", "dynamic-label");
|
|
|
|
removeExistingLabels("ticket_type_premium_khomloy", "dynamic-label");
|
|
|
|
removeExistingLabels("ticket_type_vip_khomloy", "dynamic-label");
|
|
|
|
removeExistingLabels("ticket_type_vip_khomloy", "dynamic-label");
|
|
|
@ -464,6 +466,10 @@
|
|
|
|
if (standardInput) {
|
|
|
|
if (standardInput) {
|
|
|
|
standardInput.disabled = false;
|
|
|
|
standardInput.disabled = false;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
var vip_khomloy = document.getElementById("vip_khomloy");
|
|
|
|
|
|
|
|
if (vip_khomloy) {
|
|
|
|
|
|
|
|
vip_khomloy.checked = true;
|
|
|
|
|
|
|
|
}
|
|
|
|
var premiumInput = document.getElementById("premium_khomloy");
|
|
|
|
var premiumInput = document.getElementById("premium_khomloy");
|
|
|
|
if (premiumInput) {
|
|
|
|
if (premiumInput) {
|
|
|
|
premiumInput.disabled = false;
|
|
|
|
premiumInput.disabled = false;
|
|
|
|