jquery $.post を使用する opencart のスクリプトに取り組んできました。
$(document).ready(function() {
$(function() {
$("#contentLeft ul").sortable({
opacity: 0.6,
cursor: 'move',
update: function() {
var order = $(this).sortable("serialize") + '&action=updateRecordsListings';
$.post("updateDB.php", order, function(theResponse) {
$("#contentRight").html(theResponse);
});
}
});
opencart で updateDB.php にあるべきものを含むモデルに関数を作成しました。現在のページをリロードせずに、外部ページ (updateDB.php) の代わりにこの関数を呼び出すことを望んでいました。
多分 .post は私が使用すべきものではないでしょうか?
任意のアイデアをいただければ幸いです。