сбой переадресации php при нажатии ОК сладкое оповещение

 <?php
//  my button auth

$autorizar    = "<a onclick=\"confirmar(event)\" href=\"scripts/autorizaTicket-".$resultado['id']."-".$_SESSION['ticket_id']."\"><button title=\"Autorizar\" type=\"button\" class=\"btn\" ><i class=\"fa fa-check\" aria-hidden=\"true\"></i></button></a>";
?>



<script>
function confirmar(e) {
e.preventDefault()
swal({
title: 'Espere',
text: "¿Estás seguro?",
type: 'warning',
showCancelButton: true,
cancelButtonText: "Cancelar",
confirmButtonColor: '#3085d6',
cancelButtonColor: '#d33',
confirmButtonText: 'Sí, vamos'
}).then((result) => {
if (result.value) {
window.location.href = e.target.href;
}
})
}
</script>

предупреждение перестает ждать подтверждения, но когда вы нажимаете ok, оно не перенаправляет меня к указанному мною php, что я делаю неправильно?

1

Решение

Вы должны использовать старую версию Sweet Alert, где result в обратном вызове передается простое логическое значение.

Просто обновите ваше состояние до следующего:

if (result) {
window.location.href = e.currentTarget.href;
}

Или обновите до последней версии Sweet Alert.

0

Другие решения

  <script>  function confirmar(e) {
e.preventDefault()
swal({
title: 'Ir a Google',
text: "¿Estás seguro?",
type: 'warning',
showCancelButton: true,
confirmButtonColor: '#3085d6',
cancelButtonColor: '#d33',
confirmButtonText: 'Sí, vamos'
}).then((result) => {
if (result.value) {
let linkElement = e.target
while (!linkElement.href) {
linkElement = linkElement.parentElement
}
window.location.href = linkElement.href
}
})
}</script>

Я решил, я поделился, кому это может понадобиться

0

По вопросам рекламы [email protected]