在 sweetalert 2 的同一行中对齐标签和 select 下拉列表

Align label and select dropdown in the same row in the sweetalert 2

我正在寻找可以使用 sweetalert2 在同一行中对齐标签和下拉列表的示例。

我尝试添加自定义标签来实现此目的,但它在不同的行中,我想在单击“确定”按钮时控制所选的下拉菜单。

下面是我的 stackblitz。

https://stackblitz.com/edit/angular-sweetalert-dropdown

您可以使用 plain/styled 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
  }

   });

使用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