document.write("
");
$(document).ready(function(){
$("#sub_btn").click(function(){
var enews = 'Addly';
var bid = '1';
var name = $("#name").val();
if(name==""){
layer.open({
content: 'Be sure to fill in your name!'
,btn: 'OK'
});
$("#name").focus();
return false;
}
var mycall = $("#mycall").val();
if(mycall==""){
layer.open({
content: 'You have not filled in the contact number'
,btn: 'OK'
});
$("#mycall").focus();
return false;
}
var key = $("#key").val();
var patternkey = /^\d{4}$/;
if(key==""){
layer.open({
content: 'Verification code format error'
,btn: 'OK'
});
$("#key").focus();
return false;
}
if(!patternkey.test(key)) {
layer.open({
content: 'Verification code format error'
,btn: 'OK'
});
$("#key").focus();
return false;
}
var lytext = $("#lytext").val();
if(lytext==""){
layer.open({
content: 'Message content cannot be empty'
,btn: 'OK'
});
$("#lytext").focus();
return false;
}
$.ajax(
{
type:"POST",
url:"/e/extend/ajaxbook/doaction.php",
dataType:"html",
data: {'enews':'Addly','name':name,'mycall':mycall,'lytext':lytext,'key':key,'bid':bid},
beforeSend:function(){
$('#status').show().html('Submitting...');
$('#sub_btn').attr('disabled','disabled');
},
success: function (msg) {
if(msg=='error'){
layer.open({
content: 'Submit failed',
btn: 'OK'
});
$("#sub_btn").removeAttr("disabled");
}
else if(msg=='codeerror'){
layer.open({
content: 'Wrong captcha',
btn: 'OK'
});
$("#key").val("");
$("#sub_btn").removeAttr("disabled");
}
else if(msg=='toofast'){
layer.open({
content: 'Too Fast',
btn: 'OK'
});
$("#key").val("");
$("#sub_btn").removeAttr("disabled");
}
else{
layer.open({
content: 'Success',
btn: 'OK',
yes: function(index, layero){
window.location.reload();
}
});
$('#status').show().html(msg);
$("#name").val("");
$("#lytext").val("");
$("#mycall").val("");
$("#key").val("");
$("#sub_btn").removeAttr("disabled");
}
}
});
});
});