在我的代码中,我正在加载查询页面并在我的div中显示消息。
在我的查询页面中查询成功然后打印成功
我的JavaScript代码
<script type="text/javascript">
$(document).ready(function() {
$("#test-list").sortable({
handle : '.handle',
update : function () {
var order = $('#test-list').sortable('serialize');
$("#success-result").load("process-sortable.php?"+order);
}
});
});
</script>
我的分区
<div class="box-header">
<h4 id="success-result" class="box-title">Welcome to update page</h4>
</div>
我想拖动行然后显示等待更新过程
然后当查询页面打印成功然后显示更新成功
否则欢迎使用更新页面
如何?
答案 0 :(得分:0)
<script type="text/javascript">
$(document).ready(function() {
$("#test-list").sortable({
handle : '.handle',
start: function(){
$("#success-result").html("loading....");
},
update : function () {
var order = $('#test-list').sortable('serialize');
$("#success-result").load("process-sortable.php?"+order);
}
});
});
</script>