jquery应该有messagebox之类的UI(没有的话也可以自己构建一个),至于获取地理位置,可以用第三方的公开API进行获取
这里有两种方法,请自取。另外获取地理位置是高级接口,请注意。
1.http://mp.weixin.qq.com/wiki/8/1b86529d05db9f960e48c3c7ca5be288.html
$.prompt('<p>Save the order successfully!</p>', { opacity: 0.9, buttons: { Ok: true }, //prefix: 'jqismooth', submit: function (s) { if (s) { var jono = result.result.substring(0, result.result.indexOf(',')); if (jono == "") { location.href = '/order/excelipporder/' + result.result } else { location.href = '/order/excelipporder/' + jono; } $.post('/order/excelipporder/email?jno=' + result.result, '', function (flg) { if (flg) { } }); } } });
地理位置调用第3方接口
2楼真相