0

这是我的 jQuery 脚本

$("table#list").jqGrid({
url:'example.php',
datatype: 'json',
mtype: 'POST',
colNames:['ID', 'Position', 'Abrv', 'Department'],
colModel :[ 
{name:'id', index:'id', width:40, hidden: true, editrules:{edithidden:true}}, 
{name:'position', index:'position', width:300, editable: true, required: true},
{name:'abvr', index:'abvr', width:50, editable: true, required: true}, 
{name:'department', index:'department', editable: true, edittype: 'select', editoptions:{dataUrl: 'test2.php'}}
],
width: 600,
height: 250,
rownumbers: true,
pager: '#pager',
rowNum: 10,
rowList:[10,20],
sortname: 'id',
sortorder: 'ASC',
viewrecords: true,
gridview: true,
caption: 'Position',
loadError : function(xhr,st,err) {
$("#rsperror").html("Type: "+st+"; Response: "+ xhr.status + " "+xhr.statusText);
},
editurl: 'insertDB.php'
}); 

插入数据库.php

 if($_POST['oper'] == 'add'){
$position = $_POST['position'];
$department = $_POST['department'];

$query = "INSERT INTO test_position VALUES ('', '$position', '$department')";
$run = mysql_query($query);
}

当我提交表单时没有任何反应。我的数据库同样没有更新。

  1. 我在 PHP 中的 post 变量不正确吗?
  2. 有没有办法获取 insertDB.php 返回的内容并在 jQuery 中显示?
4

1 回答 1

0

我忘了选择一个数据库。我在使用 FireBug 后发现。

于 2012-09-18T13:31:16.330 回答