Commit bc91d224 by agan

添加头部

parent 79859ff9
Showing with 12 additions and 1 deletions
......@@ -133,7 +133,18 @@
if (data.os == 'h5') {
$('.mHead').show();
}
function url_get_params(url_path) {
var url = url_path;
var theRequest = new Object();
if (url.indexOf("?") != -1) {
var str = url.substr(url.indexOf("?") + 1);
strs = str.split("&");
for (var i = 0; i < strs.length; i++) {
theRequest[strs[i].split("=")[0]] = unescape(strs[i].split("=")[1]);
}
}
return theRequest;
}
var btnOk = false;
$.ajax({
url: $ip + "/setting/getRecharge.html",
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or sign in to comment