You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
|
- //api地址
- var serverurl = "http://localhost:31173";
- //当前项目地址
- var currentUrl = "http://192.168.50.3:8082";
- //地址栏传参
- function request(d) {
- for (var c = location.search.slice(1).split("&"), a = 0; a < c.length; a++) {
- var b = c[a].split("=");
- if (b[0] == d)
- if ("undefined" == unescape(b[1])) break;
- else return unescape(b[1])
- }
- return ""
- };
|