我试图通过 ajax 将表单发送到 php 页面,并带有 jQuery 对话框中的按钮。因为,表单中没有按钮我在按钮定义中有一个发送整个表单的函数
这是我正在使用的声明
//JS文件
$( "#showInfo_dialog" ).dialog({
autoOpen: false,
height: 240,
width:300,
modal: true,
buttons: [
{text:"Edit",click: function(){ //Add edit button to dialog box
alert("edit");
//FOR SOME REASON IT DOESNT NEED ";"
$('#title').removeAttr('disabled')
$('#description').removeAttr('disabled')
$('#director').removeAttr('disabled')
$('#producer').removeAttr('disabled')
$('#category').removeAttr('disabled')
}},
{text:"Update",click: function(){//Add update button to dialog box
// alert("update");
**$.post("save_show.php", $("#show_form").serialize() ,function(data){
alert(data);**
});
}}]
});
//PHP 文件 //这是我在 php.ini 中创建的表单。当我得到并附加没有问题。我//可以看到数据。我这样做是因为它更方便我 echo "
“.$show_info['show_title']。”
标题类别
描述
Director
Producer
"; echo $_POST['category'];
每次我运行它时,返回的数据都是一个错误,说明该类别在表单中。所以我想知道这有什么问题