|
|
|
สอบถามพี่ ๆเรื่องการเพิ่มข้อมูล แล้วเด้งสคริป sweet alert หน่อยคับ |
|
|
|
|
|
|
|
คือว่าผมอยากให้สคริป sweet alert ขึ้นมา แล้วเมื่อกด ตกลง ให้สคริป sweet alert เด้งไปหน้าที่กำหนด url อ่าคับ พี่ ๆพอมีแนวทางแนะนำไหมคับ
(โค๊ต sweet alert )
echo "<script>";
echo "swal({
title: 'เพิ่มข้อมูลสำเร็จ',
text: 'กรุณากด ตกลง เพื่อดำเนินการต่อ',
type: 'success',
confirmButtonText: 'ตกลง',
},
function(isConfirm){
if(isConfirm)
{
window.location.reload('table-status.php');
}
else
{
}
}
)";
echo "</script>";
คือผมใช้โค๊ตนี้มันแสดง sweet alert แต่พอกด ตกลงแล้วมันก็ขึ้น sweet alert หน้าเดิมเรื่อย ๆเหมือนมันไม่ได้เข้าเงื่อนไข if
(แสดง sweet alert)
ขอบคุณสำหรับคำปรึกษาคับ
Tag : PHP, HTML, CSS, HTML5, JavaScript, Ajax
|
|
|
|
|
|
Date :
2019-09-30 22:06:41 |
By :
594407088 |
View :
5398 |
Reply :
7 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
มันมี callback นิครับ ใส่ใน callback ได้เลย
ตัวอย่าง Code (JavaScript)
Swal.fire({
title: 'Are you sure?',
text: "You won't be able to revert this!",
type: 'warning',
showCancelButton: true,
confirmButtonColor: '#3085d6',
cancelButtonColor: '#d33',
confirmButtonText: 'Yes, delete it!'
}).then((result) => {
if (result.value) {
location.href="http://www.google.co.th";
}
})
|
ประวัติการแก้ไข 2019-10-01 10:13:53
|
|
|
|
Date :
2019-10-01 10:11:25 |
By :
mongkon.k |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
Code (JavaScript)
swal({
title: 'เพิ่มข้อมูลสำเร็จ',
text: 'กรุณากด ตกลง เพื่อดำเนินการต่อ',
type: 'success',
confirmButtonText: 'ตกลง',
}).then((result){
if (result.value) {
//window.location.reload('table-status.php');
location.href('table-status.php');
}
})
|
|
|
|
|
Date :
2019-10-01 15:47:57 |
By :
mongkon.k |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
Code (JavaScript)
Swal.fire({
type: 'success',
title: 'Your work has been saved',
//showConfirmButton: false,
confirmButtonText: 'ตกลง',
//timer: 1500
}).then((result) => {
if (result.value) {
location.href="http://www.google.co.th";
}
})
|
|
|
|
|
Date :
2019-10-01 16:01:42 |
By :
samada |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
Code (JavaScript)
ผมทำแบนี้ใช้ได้ปกติ ไม่มีปัญหานะ
if($result_tp_plan_update){
?>
<style class="cp-pen-styles">body {
font-family: "Open Sans", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen-Sans, Ubuntu, Cantarell, "Helvetica Neue", Helvetica, Arial, sans-serif;
}
</style>
</head>
<body>
<script src='https://cdn.jsdelivr.net/npm/sweetalert2'></script>
<script >
Swal.fire({
type: 'success',
title: 'Your work has been saved',
//showConfirmButton: false,
text: 'You clicked the button!',
confirmButtonText: 'ตกลง',
//timer: 1500
}).then((result) => {
if (result.value) {
location.href="index.php?menu=Performance-report";
}
})
//# sourceURL=pen.js
//window.top.location.href='index.php?menu=Performance-report';
</script>
</body>
<?php
}
?>
|
|
|
|
|
Date :
2019-10-02 08:36:18 |
By :
samada |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
ได้แล้วคับผมเปลี่ยนจาก window.location.reload('table-status.php'); เป็น window.location='table-status.php'; คับ
ขอบคุณมากๆสำหรับคำแนะนำคับ ขอบคุณคับ
|
|
|
|
|
Date :
2019-10-02 11:51:09 |
By :
594407088 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
Load balance : Server 03
|