我有一个可以订购的图像列表。我使用此代码来订购图像:
$(document).ready(function(){
$(function()
{
$("#subafbeelding ul").sortable(
{
opacity: 0.6,
cursor: 'move',
update: function(){
var order = $(this).sortable("serialize") + '&action=updateRecordsListings';
$(".hoofdafbeelding").load("foo.php");
$.post("updatevolgoorde.php", order, function(theResponse)
{
$("#contentRight").html(theResponse);
});
}
});
});
});
后
$("#contentRight").html(theResponse);
我想重新加载 div 标题。我怎样才能做到这一点?