sorry but after a hour of trying and searching i couldnt find a solution.(抱歉,经过一个小时的尝试和搜索,我找不到解决方案。)
I am trying to get the textarea input of a sweetalert into a ajax request.(我正在尝试将sweetalert的textarea输入转换为ajax请求。)
The var text is always undefined.(var文本始终是未定义的。)
Like this:(像这样:)
jQuery(document).ready(function(){
if(window.location !== "turnier-bearbeiten/*"){
jQuery( "#loeschen" ).click(function() {
const { value: text } = Swal.fire({
title: 'Achtung!',
text: 'Bist du sicher, dass du das Turnier absagen m?chtest? Es gibt kein zurück!',
input: 'textarea',
inputPlaceholder: 'Bitte begründe deine Absage. Alle Teilnehmer erhalten entsprechend diese Nachricht.',
icon: 'warning',
showCancelButton: true,
cancelButtonText: 'Abbrechen',
confirmButtonText: 'Turnier absagen!'
}).then((result) => {
alert (text);
if (text != null) {
var url_string = window.location.href;
var url = new URL(url_string);
var turnier_id = url.searchParams.get("data_id");
jQuery.ajax({
type: "POST",
dataType: "json",
url: "../custom_scripts/turnier_loeschen.php",
data: { turnier_id: turnier_id, nachricht:text },
success: function(response){
if (response.redirect) {
ask by Michael H. translate from so
与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…