จัดแนวป้ายกำกับและเลือกรายการแบบเลื่อนลงในแถวเดียวกันในห้องสวีท 2 [ปิด]
ฉันกำลังมองหาตัวอย่างที่สามารถจัดแนวฉลากและรายการแบบเลื่อนลงในแถวเดียวกันโดยใช้ sweetalert2
ฉันได้พยายามเพิ่มป้ายกำกับที่กำหนดเองเพื่อให้บรรลุสิ่งนี้ แต่มันอยู่ในบรรทัดที่แตกต่างกันและฉันต้องการคอนโซลรายการแบบเลื่อนลงที่เลือกเมื่อคลิกปุ่มตกลง
ด้านล่างนี้คือ stackblitz ของฉัน
https://stackblitz.com/edit/angular-sweetalert-dropdown
คำตอบ
1 LimonMonte
ใช้inputLabel
+ customClass
พารามิเตอร์:
Swal.fire({
title: 'Select + label in one row',
input: 'select',
inputOptions: {
apples: 'Apples',
bananas: 'Bananas',
oranges: 'Oranges'
},
inputLabel: 'Select a fruit',
customClass: {
input: 'inline-flex',
inputLabel: 'inline-flex'
}
})
.inline-flex {
display: inline-flex !important;
margin: .5em !important;
}
<script src="https://cdn.jsdelivr.net/npm/sweetalert2@10"></script>
อ่านเพิ่มเติมเกี่ยวกับcustomClass
:https://sweetalert2.github.io/#customClass
1 AhmedMaher
คุณสามารถใช้ html ธรรมดา / สไตล์และจับค่าแบบเลื่อนลงได้ตามปกติดังต่อไปนี้:
Swal.fire({
showCancelButton: true,
type: "warning",
html: ` select reason <select name="cars" id="cars">
<option value="volvo">Volvo</option>
<option value="saab">Saab</option>
<option value="mercedes">Mercedes</option>
<option value="audi">Audi</option>
</select>`,
preConfirm: function() {
var elm = document.getElementById("cars");
alert(elm.value); // use user selected value freely
}
});