gpt4 book ai didi

jquery - 在排序 Jquery ui 之前确认

转载 作者:太空宇宙 更新时间:2023-11-04 14:04:34 24 4
gpt4 key购买 nike

我想请用户确认他是否真的要对列表进行排序这里是我的代码

<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 脚本,但不会返回到其原始位置。

最佳答案

您可以在更新回调中调用 event.preventDefault() 将元素恢复到其原始位置。

Demo here

关于jquery - 在排序 Jquery ui 之前确认,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/21230093/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com