我正在使用 jQuery UI 的可排序功能制作一个小型拖放应用程序。jQuery 工作正常,但是当我尝试按顺序对所有行的数组进行编码时,另一端的 PHP 脚本读取数组NULL
,我不知道为什么。以下是它们在我的第一个脚本中出现的顺序:
的HTML
<form method="post" id="reorder" action="orderupdate.php">
<input type="hidden" id="post_ids" name="post_ids">
<button type="submit">REORDER</button>
</form>
<ul id="photo-selector">
<li id="img1"><img src="images/img1.jpg"></li>
<li id="img2"><img src="images/img2.jpg"></li>
<li id="img3"><img src="images/img3.jpg"></li>
<li id="img4"><img src="images/img4.jpg"></li>
<li id="img5"><img src="images/img5.jpg"></li>
<li id="img6"><img src="images/img6.jpg"></li>
</ul>
JS
$(document).ready( function(){
var formOrder = document.getElementById('reorder');
formOrder.addEventListener('submit', function(){
var post_ids_field= document.getElementById('post_ids');
var ul_id = document.getElementById("photo-selector");
var post_ids = ul_id.getElementsByTagName("li");
post_ids_field.value = JSON.stringify(post_ids);
alert("check");
});
});
单击顶部表单中的“重新排序”按钮时,它发送到的表单orderupdate.php
如下
<?php
$post_ids = json_decode($_POST['post_ids']);
var_dump($post_ids);
require("opendbas3.php");
foreach ($post_ids as $x => $value) {
$query = "UPDATE dav_posts SET p_order='$x' WHERE post_id='$value'";
$result = mysql_query($query, $link);
}
?>
现在,当我提交时,它会将我重定向到orderupdate.php
它不执行查询的 PHP 脚本,并且我发现foreach
循环无法读取$post_ids
数组。我只NULL
用我的var_dump()
. 此外,alert
JS 脚本中的 不会在ready()
函数或事件侦听器的提交上触发。它只是重定向到 PHP 脚本。
有什么不正常的吗?有什么问题?提前致谢。