|
|
|
อยาก 2 function ทำงานในปุ่มเดี่ยวกัน ครับ |
|
|
|
|
|
|
|
สวัสดีครับ พอดีว่าอยากให้ 2 function ทำงาน ในปุ่มเดี่ยวกัน ตอนนี้ทำได้ อค่ 1 function อ่ะครับ อยากให้ได้ 2 อัน ทำไง บ้างครับ รบกวนด้วยครับ
Code (JavaScript)
$('.app').click(function()
{
var id = $(this).data('id');
swal({
title: "Are you sure?",
text: "Confirm Approved Data",
type: "warning",
showCancelButton: true,
confirmButtonColor: "#356e35",
confirmButtonText: "Yes, Confirm Approved!",
closeOnConfirm: false
},
function()
{
$('.wm').waitMe({effect : 'bounce'});
$.post("comman.php",
{
checkfuction : 'AppSearchtest',
checkfuction : 'mailmofig',
trdt : id
},function(rs)
{
$('.wm').waitMe("hide");
window.location.reload();
},'JSON')
});
});
Tag : PHP, Ms SQL Server 2005
|
|
|
|
|
|
Date :
2018-12-13 10:45:15 |
By :
owenback |
View :
779 |
Reply :
4 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
เรียกอีก ฟังก์ชั่น ในฟังก์ชั่นแรกครับเช่น
Code (JavaScript)
function A(){
alert("A function");
B();
}
function B(){
alert("B function");
}
// Result
Alert 2 ครั้ง
A function
B function
|
|
|
|
|
Date :
2018-12-13 13:09:25 |
By :
Professer |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
แบบ JQuery ก็มีนะครับ โทดทีลืมดู ตัวอย่างที่ส่งมา
หรือจะใช้วิธี ไปจับ OnEvents
|
|
|
|
|
Date :
2018-12-13 13:11:15 |
By :
Professer |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
Code (JavaScript)
function a(){ /* */ }
function b(){ /* */ }
function x(){ /* */ }
function y(){ /* */ }
$.ajax({ url: 'xxx',
error: ()=>{ a(); b(); },
success: r=>{ x(); y(); }
});
|
|
|
|
|
Date :
2018-12-13 13:34:45 |
By :
Chaidhanan |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
Date :
2018-12-20 17:06:57 |
By :
mr.win |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
Load balance : Server 05
|