12345678910111213141516171819202122232425262728293031323334353637 |
- var loadbox = "";
- function lodeHtml(){
- loadbox = '<div id="loadinfo" class="mine-dialog">'
- + '<div class="loader-inner ball-spin-fade-loader">'
- + '<div></div>'
- + '<div></div>'
- + '<div></div>'
- + '<div></div>'
- + '<div></div>'
- + '<div></div>'
- + '<div></div>'
- + '<div></div>'
- + '</div>'
- + '</div>';
- $("#app").append(loadbox);
- }
- function closeLode(){
- $("#loadinfo").remove();
- }
- function GetRequest(){
- var url = location.search; //获取url中"?"符后的字串
- var theRequest = new Object();
- if (url.indexOf("?") != -1){
- var str = url.substr(1);
- strs = str.split("&");
- for (var i = 0; i < strs.length; i++) {
- theRequest[strs[i].split("=")[0]] = strs[i].split("=")[1];
- }
- }
- return theRequest;
- };
|