基本上我想打开一个模态确认来删除一个项目,并在 textarea 元素中询问这样做的原因。然后,我想通过 ajax 将 textarea 的值发送到外部文件,但它的值没有通过。
脚本 (edit_inventory.php)。模态确认点击#retire 按钮,模态消息确认并打印发送的内容。
<script>
$(function() {
$("#retire").click(function() {
var ret_data = $("#new_equipment").serialize();
$( "#dialog-confirm" ).dialog({
resizable: false,
height: 500,
modal: true,
buttons: {
"Remove Item": function() {
$.ajax({
type: "POST",
url: "retire.php",
data: ret_data,
}).done(function( msg ) {
$("#ooi").text(''+msg);
$( "#dialog-message" ).dialog({
modal: true,
buttons: {
Ok: function() {
$( this ).dialog( "close" );
}
}
});
});
$( this ).dialog( "close" );
},
Cancel: function() {
$( this ).dialog( "close" );
}
}
});
});
});
</script>
HTML/PHP (edit_inventory.php)
if (!empty($eq_id) && $action == "") {
echo '<form name="new_equipment" id="new_equipment" action="edit_inventory.php" method="post">';
echo '<table>';
$status = show ($eq_id);
echo '<input type="hidden" name="action" value="edit">';
echo '<tr><td colspan="4"><input type="submit" value="Save" class="button">
<a href="eq_print_label.php?id='.$eq_id.'" class="button">Print Label</a>';
if($status['eq_status']!=3) { //it is !=3
echo ' <div class="button" id="retire">RetireAAA</div>';
echo'
<div id="dialog-confirm" title="Delete this piece of equipment?" style="display: none; ">
<p><span class="ui-icon ui-icon-alert" style="float: left; margin: 0 7px 20px 0;"></span>
This item will be removed from the inventory. Are you sure?</p>
<p>Reason:</p><textarea name="retire_reason" rows="10" cols="30" maxlength="150"></textarea>
</div>';
echo '<div id="dialog-message" title="Out of Inventory" style="display: none; ">
<p>
<span class="ui-icon ui-icon-circle-check" style="float: left; margin: 0 7px 50px 0;"></span>
<div id="ooi"></div>
</p>
</div>';
}
echo'</td></tr>';
echo '</table></form>';
}
函数 show() 使用从数据库中获取的所有字段值来回显表单。并返回一个状态(也来自数据库)!=3(这就是我看到'RetireeAAA'的原因)
我们的退休人员.php
<?php
print_r ($_POST);
//just to test
?>
最后,retiree.php 打印:
Array ( [eq_id] => 423A3606 ... [id] => 1111111174 [action] => edit [retire_reason] => )
谷歌开发者工具:
eq_id:423A3606
...
id:1111111174
action:edit
retire_reason:
无论我在 retire_reason textarea 中写什么,它都没有通过。传递某些东西的唯一方法是在 editinventory_edit.php 中默认一个值,同样,无论我在 textarea 中写什么,它都会默认传递预设的值。
为什么 textarea retire_reason 值没有序列化或传递?
更多信息:我将 serialize() 行移到 ajax 调用之前。在这种情况下,没有任何元素<div id="dialog-confirm">
通过。此外,没有从 retiree.php 打印回来