$about
包含$about[$i]['about_bg'] = image name
和$about[$i]['sort']= sort no
的数组现在我可以使用拖放功能来设置图像,但我也想更新数据库
如何使用ajax请求更新数据库?
<div style="margin-top: 276px;margin-left: 465px;">
<table border="1">
<tr >
<td colspan="<?=count($about)?>" >drag and drop to change the image<td>
</tr>
<tr>
<?php
for ($i=0; $i<count($about) ; $i++) {
echo "<td>".$about[$i]['sort']."</td>";
}?>
</tr>
<tr class="sortable" >
<?php
for ($ii=1,$i=0; $i<count($about) ; $i++) {
echo "<td><img src='../img/cms/".$about[$i]['about_bg']."' title='Drag and drop the image ' height='100' width='100'></td>";
} ?>
</tr>
</table>
</div>
<script>
$(function() {
$( ".sortable" ).sortable();
$( ".sortable" ).disableSelection();
});
</script>
答案 0 :(得分:0)
$('.sortable').sortable({
change: function() {
$.ajax({
//do your call
})
}
});