1.res = Ajax.call('user.php?act=depot_id', 'id='+v,null,"GET", "JSON",false);
2.所需要文件jquery.js ,transport.js(或者transport_jquery.js)
最简单的ecshop Ajax.call使用
js文件
function a(){
Ajax.call('group_buy.php?act=price', '',b,"GET", "TEXT");
}
function b(r){
alert(r);
}