01.
$(
'#sub'
).click(
function
(){
02.
var
formData = $(
"#finput"
).serialize();
03.
$.ajax({
04.
type:
'POST'
,
05.
url :
'Join_add_csv.php'
,
06.
dataType :
'json'
,
07.
data : formData ,
08.
09.
10.
success :
function
(data){
11.
12.
if
(data.status==
'ok'
){
13.
$(
'#msg'
).html(
'<img src=img16/tick.png> <font color=#0000FF><strong>บันทึกข้อมูล รหัสนักศึกษา : <u><i>'
+data.msg+
'</i></u> เข้าสู่ระบบเรียบร้อยแล้ว</strong></font>'
).show();
14.
document.getElementById(
"student_key"
).focus();
15.
$(
'#student_key'
).val(
''
);
16.
show($(
'#act'
).val(),$(
'#p'
).val());
17.
}
else
if
(data.status==
'nonedata'
){
18.
$(
'#msg'
).html(
'<img src=img16/exclamation.png> <font color=#FF0000><strong>ไม่สามารถบันทึกข้อมูลได้ <u><i>'
+data.msg+
'</i></u> ในระบบ !!!</strong></font>'
).show();
19.
document.getElementById(
"student_key"
).focus();
20.
}
else
if
(data.status==
'noneload'
){
21.
$(
'#msg'
).html(
''
).show();
22.
document.getElementById(
"student_key"
).focus();
23.
}
else
{
24.
$(
'#msg'
).html(
'<img src=img16/exclamation.png> <font color=#FF0000><strong>มีข้อมูล รหัสนักศึกษา : <u><i>'
+data.msg+
'</i></u> ในกิจกรรมนี้แล้ว !!!</strong></font>'
).show();
25.
document.getElementById(
"student_key"
).focus();
26.
}
27.
28.
},
29.
error :
function
(data)
30.
{
31.
(
'#msg'
).html(responseText).show();
32.
}
33.
34.
});
35.
});