热门标签 | HotTags
当前位置:  开发笔记 > 编程语言 > 正文

ajax表单验证和mysql,jquery和ajax表单提交到MySQL数据库中的双重条目

我有这个jqueryajax表单提交脚本,我写在DB中创建和编辑项目。jquery和ajax表单提交到MySQL数据库中的双重条目问题是,每当我创建一个

我有这个jquery ajax表单提交脚本,我写在DB中创建和编辑项目。jquery和ajax表单提交到MySQL数据库中的双重条目

问题是,每当我创建一个项目2项目创建。

$(document).ready(function() {

$('#new_item').on('hidden', function() {

$(".alert").hide(); // remove errors…when the modal form closes

});

$(".showedit").click(function(){

var edit = $(this).attr('id').split("_");// get the edit id

var id = edit[1];

var values = $('#data_'+id+' td').map(function(_, td) {

return $(td).text();

}).get();

// populate the form with the database field

var name = $("input[name=name]").val(values[1]);

var model = $("select[name=model]").val(values[2]);

var brand = $("select[name=brand]").val(values[3]);

$('#new_item').modal();

});

$("#submit_button").click(function(e) {

e.preventDefault();

var name = $("input[name=name]").val();

var amount = $("input[name=amount]").val();

var model = $("select[name=model]").val();

var brand = $("select[name=brand]").val();

$.ajax({

type: "POST",

url: "=base_url()?>items/create",

cache: false,

dataType: "json",

data: 'name='+name+'&amount='+amount+'&model='+model+'&brand='+brand,

success: function(result){

if(result.error) {

$(".alert").addClass('alert-error');

$(".alert").fadeIn('slow').html(result.message);

}

else

{

$(".alert").addClass('alert-success');

$(".alert").fadeIn('slow').html(result.message);

}

}

});

});

});

请帮我解决这个问题。我会很棒!

2012-10-31

olbanana

+0

你检查你的控制台形式...? –

+0

你也可以尝试改变'$(“#submit_button”)。submit(function(e){' –

+1

你能添加你的html代码吗? –



推荐阅读
author-avatar
我是传奇lwk
这个家伙很懒,什么也没留下!
PHP1.CN | 中国最专业的PHP中文社区 | DevBox开发工具箱 | json解析格式化 |PHP资讯 | PHP教程 | 数据库技术 | 服务器技术 | 前端开发技术 | PHP框架 | 开发工具 | 在线工具
Copyright © 1998 - 2020 PHP1.CN. All Rights Reserved | 京公网安备 11010802041100号 | 京ICP备19059560号-4 | PHP1.CN 第一PHP社区 版权所有