わかりました、ドラッグ可能な CMS システムを作成しようとしていますが、次の問題に取り掛かっています。
「div」のドラッグが完了したら、PhP を使用して MySQL データベースに新しい左と上 (x と y) の変数を保存します。
次のコード行で左と上の変数を取得します。
$(function() {
$( "#3" ).draggable({
stop: function () {
$.post("upload.php", {
left: this.getBoundingClientRect().left,
top: this.getBoundingClientRect().top
})
},
containment: "#containment-wrapper",
scroll: false
});
私のupload.phpは次のとおりです。
<?
mysql_query("UPDATE nvt SET left='". $_POST['left'] ."'")or die(mysql_error());
mysql_query("UPDATE nvt SET top='". $_POST['top'] ."'")or die(mysql_error());
header("Location: inlogged");
?>
div のドラッグが完了したら、反応がありませんか?