global.js 3.8 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150
  1. ////扩展函数
  2. var Globaldomain = "http://nc.vanke.com";
  3. var Currenturl = window.location.href;
  4. Currenturl = Currenturl.replace(Globaldomain, "")
  5. //判断是否通过微信内置浏览器打开
  6. function is_weixin() {
  7. var ua = navigator.userAgent.toLowerCase();
  8. if (ua.match(/MicroMessenger/i) == "micromessenger") {
  9. return true;
  10. } else {
  11. return false;
  12. }
  13. }
  14. function isoauth() {
  15. var randomcode = Math.random() * 100000;
  16. var pars = 'type=isoauth';
  17. var state = $.ajax({
  18. type: "Get",
  19. url: "oauthweixi.aspx",
  20. data: pars + "&code=" + randomcode,
  21. async: false
  22. }).responseText;
  23. if (state == 1) {
  24. getlogininfo();
  25. } else {
  26. if (window.location.href.indexOf("login.shtml") > -1|| window.location.href.indexOf("register.shtml") > -1 || window.location.href.indexOf("register_txt.shtml") > -1 || window.location.href.indexOf("password.shtml") > -1)
  27. {
  28. //在首页或登录页不需要跳到登录页
  29. }
  30. else {
  31. RedirectAuthUrl("2014/partner2014/oauth.html?refurl=" + Currenturl.replace("#rd",""));
  32. }
  33. }
  34. }
  35. var WinMoney = 0;
  36. function getlogininfo() {
  37. var randomcode = Math.random() * 100000;
  38. var pars = 'type=getlogininfo';
  39. var state = $.ajax({
  40. type: "Get",
  41. url: "partnerserver.aspx",
  42. data: pars + "&code=" + randomcode,
  43. async: false
  44. }).responseText;
  45. json = jQuery.parseJSON(state);
  46. if (json.loginstate == "0") {
  47. if (window.location.href.indexOf("login.shtml") > -1 || window.location.href.indexOf("register.shtml") > -1 || window.location.href.indexOf("register_txt.shtml") > -1 || window.location.href.indexOf("password.shtml") > -1 || window.location.href.indexOf("index.shtml") > -1 || window.location.href.indexOf("activityrules.shtml") > -1) {
  48. //在首页或登录页不需要跳到登录页
  49. $(".member a").click(function () {
  50. window.location = "login.shtml";
  51. })
  52. }
  53. else {
  54. window.location = "login.shtml";
  55. }
  56. }
  57. else {
  58. $(".member img").attr("src", json.HeadImgUrl == "" ? "tpl/www/images/member_on.png" : json.HeadImgUrl);
  59. $(".member a").html(json.UserName);
  60. // WinMoney = json.WinMoney == "" ? 0 : parseFloat(json.WinMoney).toFixed(2);
  61. //// if (json.Iswin == "True") {
  62. //// $(".m320 .hb").html("已领取红包");
  63. //// }
  64. //// else {
  65. //// $(".m320 .hb").html("领取红包");
  66. //// }
  67. //
  68. // if (window.location.href.indexOf("redpaper.shtml") > -1) {
  69. // if (WinMoney > 0) {
  70. // $(".step2").html("感谢您的参与,您已领取该红包 金额" + WinMoney+"元");
  71. // }
  72. // }
  73. }
  74. }
  75. $(function () {
  76. // if (!is_weixin()) {
  77. getlogininfo();
  78. // }
  79. // else {
  80. // isoauth();
  81. // }
  82. });
  83. function direct(url,frameid,isparent)
  84. {
  85. url = url.replace(/&/g,"&");
  86. if(!isparent || isparent == "" || isparent == "undefined")
  87. {
  88. if(frameid)
  89. {
  90. window.frames[frameid].location.href = url;
  91. }
  92. else
  93. {
  94. window.location.href=url;
  95. }
  96. }
  97. else
  98. {
  99. if(!frameid || frameid == "" || frameid == "undefined")
  100. {
  101. parent.window.location.href = url;
  102. }
  103. else
  104. {
  105. window.parent.frames[frameid].location.href = url;
  106. }
  107. }
  108. }
  109. //设定多长时间运行脚本
  110. //参数 time 是时间单位是毫秒,为0时表示直接运行 大于0小于10毫秒将自动*1000
  111. //参数 js 要运行的脚本
  112. function eval_js(time,js)
  113. {
  114. time = parseFloat(time);
  115. if(time < 0.01)
  116. {
  117. eval(js);
  118. }
  119. else
  120. {
  121. if(time < 10)
  122. {
  123. time = time*1000;
  124. }
  125. window.setTimeout(js,time);
  126. }
  127. }
  128. //编码网址
  129. function url_encode(str)
  130. {
  131. return transform(str);
  132. }