SweetAlert2 속성 및 제어

      Swal.fire( {
          title: msg,    //  메세지 큰 제목   
          title:   “<div style=’color:#f00;font-size:15px’>” + msg + “</div>”,    //  HTML & CSS 로 직접수정
          text : msg_detail,     // 메세지 상세설명  , title 처럼 HTML 로 직접가능
          icon : icon,  // 아이콘
          timer:ms, // 자동 닫히는 시간 주기 ms ,  0 지정이면 자동 안닫힘
          showConfirmButton: false // ok 버튼 노출 여부
          showDenyButton: true, // No 버튼 노출 여부
          showCancelButton: true, // 닫기(취소) 버튼 노출 여부
          confirmButtonText : “예”, // 버튼 문구 수정     
          denyButtonText : “아니오”, // 버튼 문구 수정     
          showConfirmButtonText : “닫기” // 버튼 문구 수정     
      }).then( (result) => {   
            if (result.isConfirmed) {
                  alert(“ok”)
            } else if (result.isDenied) {
                  alert(“denied”)       
            }
     })

답글 남기기

이메일 주소는 공개되지 않습니다. 필수 필드는 *로 표시됩니다