我正在使用bellow脚本
tempCatch
现在我想用post方法向我的网址发送请求。我怎么能这样做。
答案 0 :(得分:0)
Jquery加载函数是从服务器获取内容的简便方法。默认情况下,如果数据作为对象提供,则使用POST方法;否则,假设GET。
改为使用$ .post:
$.post("<?php echo base_url('explorer/processSortable'); ?>?"+order, function( data ) {
$( "#success-result" ).html( data );
});