0
我與波紋管腳本如何轉換我的GET請求,POST請求
$(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("<?php echo base_url('explorer/processSortable'); ?>?"+order);
}
});
現在我要發送請求給我的網址與POST方法的工作。我該怎麼做。
到這裏看看:http://api.jquery.com/jquery.post/ –
不javascript代碼裏面混合PHP代碼,這樣做' var url =「<?php echo base_url('explorer/processSortable');?>?」;'在你的js代碼之上 –