yourphp.js 5.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208
  1. //TAB切换
  2. var ROOT;
  3. function Tabs(id,title,content,box,on,type,action){
  4. if(type){
  5. $(id+' '+title).click(function(){
  6. $(this).addClass(on).siblings().removeClass(on);
  7. $(content+" > "+box).eq($(id+' '+title).index(this)).show().siblings().hide();
  8. });
  9. }else{
  10. $(id+' '+title).mouseover(function(){
  11. $(this).addClass(on).siblings().removeClass(on);
  12. $(content+" > "+box).eq($(id+' '+title).index(this)).show().siblings().hide();
  13. });
  14. }
  15. if(action){
  16. $(id+' '+title).eq(action).addClass(on).siblings().removeClass(on);
  17. $(content+" > "+box).eq(action).show().siblings().hide();
  18. }else{
  19. $(id+' '+title).eq(0).addClass(on).siblings().removeClass(on);
  20. $(content+" > "+box).eq(0).show().siblings().hide();
  21. }
  22. }
  23. function setcookie(name,value){
  24. var Days = 30;
  25. var exp = new Date();
  26. exp.setTime(exp.getTime() + Days*24*60*60*1000);
  27. document.cookie = name + "="+ escape (value) + ";expires=" + exp.toGMTString();
  28. }
  29. function getcookie(name){
  30. var arr = document.cookie.match(new RegExp("(^| )"+name+"=([^;]*)(;|$)"));
  31. if(arr != null){
  32. name1=unescape(arr[2]);
  33. var name = name1.replace(/[\',\"]/g,"");
  34. return name;
  35. }else{
  36. return "";
  37. }
  38. }
  39. function delcookie(name){
  40. var exp = new Date();
  41. exp.setTime(exp.getTime() - 1);
  42. var cval=getCookie(name);
  43. if(cval!=null) document.cookie= name + "="+cval+";expires="+exp.toGMTString();
  44. }
  45. function showlogin()
  46. {
  47. var auth = getcookie('YP_auth');
  48. if(auth != '')
  49. {
  50. $('#login_username').html(unescape(getcookie('YP_username')));
  51. $('#login_div').hide();
  52. $('#logined_div').show();
  53. }
  54. else
  55. {
  56. $('#logined_div').hide();
  57. $('#login_div').show();
  58. }
  59. }
  60. $(function(){
  61. showlogin();
  62. });
  63. function resetVerifyCode(){
  64. var timenow = new Date().getTime();
  65. document.getElementById('verifyImage').src= ROOT+'/index.php?g=Home&m=Index&a=verify#'+timenow;
  66. }
  67. function donghua(obj){
  68. var speed=20;
  69. var demoh = document.getElementById(obj);
  70. var demoh1 = document.getElementById(obj+'_1');
  71. var demoh2 = document.getElementById(obj+'_2');
  72. demoh2.innerHTML=demoh1.innerHTML;
  73. function wfdh(){
  74. if(demoh2.offsetWidth-demoh.scrollLeft<=0){demoh.scrollLeft-=demoh1.offsetWidth;}
  75. if(demoh2.offsetWidth-demoh.scrollLeft>0){demoh.scrollLeft++;}
  76. }
  77. var MyMarh=setInterval(wfdh,speed);
  78. demoh.onmouseover=function() {clearInterval(MyMarh);}
  79. demoh.onmouseout=function() {MyMarh=setInterval(wfdh,speed);}
  80. }
  81. function showon(obj,onobj,id){
  82. $(obj+' '+ onobj).click(function(){
  83. //$(this).parent().addClass('on').siblings().removeClass('on');
  84. if($(this).parent().hasClass('on')){
  85. $(this).parent().removeClass('on');
  86. }else{
  87. $(this).parent().addClass('on');
  88. }
  89. });
  90. if(id){
  91. $('#catlist_'+id).parent().parent().addClass('on');
  92. }
  93. }
  94. function Floaters() {
  95. this.delta=0.15;
  96. this.playid =null;
  97. this.items = [];
  98. this.addItem = function(id,x,y,content) {
  99. var newItem = {};
  100. newItem.object = document.getElementById(id);
  101. if(x==0){
  102. objw= newItem.object.offsetWidth;
  103. var body = (document.compatMode && document.compatMode!="BackCompat")? document.documentElement : document.body;
  104. newItem.x = x = body.scrollLeft + (body.clientWidth - objw)/2;
  105. newItem.y = y;
  106. }else{
  107. newItem.x = x;
  108. newItem.y = y;
  109. }
  110. this.items[this.items.length] = newItem;
  111. }
  112. this.play =function(varname){
  113. this.playid = setInterval(varname+'.plays()',30);
  114. }
  115. this.close = function(obj){
  116. document.getElementById(obj).style.display='none';
  117. //clearInterval(this.playid);
  118. }
  119. }
  120. Floaters.prototype.plays = function(){
  121. var diffY;
  122. if (document.documentElement && document.documentElement.scrollTop)
  123. {
  124. diffY = document.documentElement.scrollTop;
  125. }
  126. else if (document.body)
  127. {
  128. diffY = document.body.scrollTop;
  129. }else{}
  130. for(var i=0;i<this.items.length;i++) {
  131. var obj = this.items[i].object;
  132. var followObj_y = this.items[i].y;
  133. var total = diffY + followObj_y;
  134. if(this.items[i].x >= 0){
  135. obj.style['left'] = this.items[i].x+ 'px';
  136. }else{
  137. obj.style['right'] = Math.abs(this.items[i].x)+ 'px';
  138. }
  139. if( obj.offsetTop != total)
  140. {
  141. var oldy = (total - obj.offsetTop) * this.delta;
  142. newtop = obj.offsetTop + ( oldy>0?1:-1 ) * Math.ceil( Math.abs(oldy) );
  143. obj.style['top'] = newtop + 'px';
  144. }
  145. }
  146. }
  147. function changeorder(obj,moduleid,id,doit,ordercall){
  148. var objs = document.getElementById(obj);
  149. var datas={'moduleid':moduleid,'id': id,'num':objs.value};
  150. $.ajax({
  151. type:"POST",
  152. url: ROOT+"/index.php?m=Order&a=ajax&do="+doit,
  153. data: datas,
  154. timeout:"4000",
  155. dataType:"JSON",
  156. success: function(data){
  157. if(data.data==1){
  158. ordercall.call(this,obj,moduleid,id,doit,data);
  159. }else{
  160. alert(doit + ' error'+data.msg);
  161. }
  162. },
  163. error:function(){
  164. alert("time out,try it");
  165. }
  166. });
  167. }
  168. function area_change(id,level,province,city,area,provinceid,cityid,areaid){
  169. var datas={'level':level,'provinceid':provinceid,'cityid':cityid,'areaid':areaid};
  170. $.ajax({
  171. type:"POST",
  172. url: ROOT+"/index.php?m=Ajax&a=Area&id="+id,
  173. data: datas,
  174. timeout:"4000",
  175. dataType:"JSON",
  176. success: function(data){
  177. if(level==0){
  178. $('#'+province).html(data.province);
  179. $('#'+city).html(data.city);
  180. $('#'+area).html(data.area);
  181. }else if(level==1){
  182. $('#'+city).html(data.city);
  183. $('#'+area).html(data.area);
  184. }else if(level==2){
  185. $('#'+area).html(data.area);
  186. }
  187. },
  188. error:function(){
  189. alert("time out,try it");
  190. }
  191. });
  192. }