|
|
|
ปัญหา jquery ไม่ return ค่าให้ฟังชั่นก์ JavaScript |
|
|
|
|
|
|
|
jquery ไม่ return ค่าให้ฟังชั่นก์ JavaScript หรือผมใช้ภาษาปนกัน ?
//ฟังก์ชันใช้เช็คชื่อซ้ำ
Code (JavaScript)
function chkuserNN(){
$(document).ready(function(){
$.post("system/CheckUser.php", {
name: $("#username").val()},
function(result){
if (result==true){
$("#chkusername").html("<font color='#00CC00'>สามารถใช้ชื่อนี้ได้</font>");
return true;
}
else{
$("#chkusername").html("<font color='#FF0000'>ชื่อผู้ใช้นี้ถูกใช้งานแล้ว</font>");
return false;
}
});
});
}
ตรวจสอบค่าreturnจากฟังก์ชั่นให้เป็นtrueก่อนทำ
Code (JavaScript)
function queryDB(){
if((fncSubmit()==true) && (chkpass()==true) && (check_email()==true) && (chkuserNN()==true)){
$(document).ready(function(){
$.post("system/AddInstructorToDB.php", {
name: $("#name").val(),
lastname: $("#lastname").val(),
username: $("#username").val(),
passaver: $("#passaver").val(),
email: $("#email").val(),
phonenumber: $("#phonenumber").val()},
function(result){
$("#display").html(result);
});
});
}
}
Tag : PHP, JavaScript, jQuery
|
ประวัติการแก้ไข 2012-11-24 01:08:20
|
|
|
|
|
Date :
2012-11-24 01:07:18 |
By :
solsoa |
View :
1064 |
Reply :
2 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
ขอบคุณมากครับพี่ num
|
|
|
|
|
Date :
2012-11-24 01:22:16 |
By :
solsoa |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
Load balance : Server 05
|