New question

Question:

Date: 15-11-2021 11:51:57 (In Spanish)

Cambiar el alert por un sweetalert en php[Resolved]

hola buenas tardes, una pregunta he estado realizado de la siguiente forma para poder emitir una alerta Popup pero usando el sweetalert:
codigo de la funcion en el controlador
	public static function Aviso(){
		echo "<script>
                        swal({
			title: '¡ERROR!',
			text: 'Esto es un mensaje de error',
			type: 'error',
		});</script>";
	}

y esta forma lo estoy llamando
	 Core::Aviso(); 


pero me esta mostrando el mensaje, quisiera ver si podrían apoyarme, en ver que esta mal, gracias
para el mensaje común de Alert lo hice asi
	public static function alert($txt){
		echo "<script>alert('".$txt."');</script>";
	}

y lo llamo asi
Core::alert("datos vacios");



Tags: $_POST - CSS - Javascript - JQuery - MySQL - OOP - PHP - PHP PDO - Question - Script PHP - Web Votes: 0 - Answers: 1 - Views: 14 Share on: Google Facebook Twitter LinkedIn Link
 

Answers:

  • Date: 15-01-2022 06:14:52 La llamada a Sweet Alert se hace en mayúsculas y usando el método fire(), por ejemplo:
            <script>
                $(document).ready(function () {
                    Swal.fire({
                        title: 'Error!',
                        html: "Texto de <strong>error</strong> usando <i>html</i>",
                        icon: 'error',
                        confirmButtonText: 'Entendido'
                    });
                });
            </script>
      Votes: 0 - Link answer
     
To actively participate in the community first must authenticate, enter the system.Sign In
 
frjcbbae garagebible.com