我想让用户确认他是否真的想在这里对列表进行排序是我的代码
<script language="javascript">
$(document).ready(function () {
$("#menu-pages").sortable({
update: function (event, ui) {
var didConfirm = confirm("Are you sure you want to Update the Navigation?");
if (didConfirm == true) {
$.post("ajax.php", {
type: "orderPages",
pages: $('#menupages').sortable('serialize')
});
}
}
});
});
</script>
是的,它不会发送ajax脚本,但它不会回到原来的位置。