这是我的片段 jquery 代码。实际上,我会检查提交表单上的字段是否为空,然后如果用户名存在则显示确认对话框。
<script type="text/javascript">
jQuery(function(){
$("#form").submit(function(){
var isFormValid = true;
if ($.trim($("#telephone").val()).length == 0){
isFormValid = false;
alert("Empty telephone!");
}
elseif(check_field() == 1){
if(confirm('Delete?')){
isFormValid = true;
}else{
isFormValid = false;
}
return isFormValid;
});
function check_field(){
var field = $('#field').val();
$.post("check_field.php", { field: field }, function(result){
//if the result is 1
if(result == 1){
return 1;
}else{
return 0;
}
});
}
});
</script>