|
|
|
อยากรู้ syntax Sweetalert เพื่อให้ย้อนกลับไปหน้าเดิม ใน PHP ครับ |
|
|
|
|
|
|
|
version ไหนเนี่ย ไม่เคยใช้ swal.fire
ที่เคยใช่้
Code (JavaScript)
swal('caption','message','type').then(r=>{
if(r.value){
...จะทำอะไรต่อก็ว่ากันไป ตรงนี้...
}
});
|
|
|
|
|
Date :
2020-02-14 19:30:57 |
By :
Chaidhanan |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
sweetalert2 นี่แหล่ะ ดีแล้วครับ ตัวอย่างการใช้
Code (JavaScript)
var insert_schedule = ()=>{
//if( !isAdmin ){ on_Construct(); return;}
var u = $('#Competition').val();
Pause = true;
swal({ title: 'นำเข้า ตารางการแข่งขัน'
, html: '<div class="col-md-12 text-center" id="test_html"></div>'
, showCancelButton: true
, onOpen: ()=>{
swal.showLoading();
$.ajax({
url: '/Soccer/Schedule/GetAsianbookie/'+u, dataType:'json'
, error: ExCeption
, success:r=>{
if(r.msg==='complete'){
swal.hideLoading();
swal.close();
if(r.data.has_error===1){
swal({ title: 'มี error',html:'ต้องการโชว์ Error หรือไม่'
, type:'Error'
, showCancelButton: true
, cancelButtonClass: 'btn btn-danger'
, confirmButtonClass: 'btn btn-success'
}).then(r=>{
if(r.value){
window.open('/Soccer/ShowError','showerror','');
}
location.reload();
});
}else{
location.reload();
}
}else{
swal.showValidationError('<font style="color: red">'+r.error+'</font>'); Pause = false;
}
}
});
}
}).then(()=>{
Pause = false;
});
$(".swal2-modal").css({ width:1200, height:600});
$(".swal2-modal, .swal2-modal button,.swal2-modal input").css('font-family','Kanit, sans-serif');
};
|
|
|
|
|
Date :
2020-02-14 20:41:37 |
By :
Chaidhanan |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
Load balance : Server 04
|