Nenhuma descrição
Você não pode selecionar mais de 25 tópicos Os tópicos devem começar com uma letra ou um número, podem incluir traços ('-') e podem ter até 35 caracteres.

ey_global.js 6.6KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173
  1. // 首页、列表页等加入购物车
  2. function ShopAddCart1625194556(aid, spec_value_id, num, rootDir) {
  3. rootDir = rootDir ? rootDir : '';
  4. $.ajax({
  5. url : rootDir + '/index.php?m=user&c=Shop&a=shop_add_cart&_ajax=1',
  6. data: {aid: aid, num: num, spec_value_id: spec_value_id},
  7. type:'post',
  8. dataType:'json',
  9. success:function(res){
  10. if (1 == res.code) {
  11. window.location.href = res.url;
  12. } else {
  13. if (-1 == res.data.code) {
  14. layer.msg(res.msg, {time: time});
  15. } else {
  16. // 去登陆
  17. window.location.href = res.url;
  18. }
  19. }
  20. }
  21. });
  22. }
  23. /**
  24. * 锚点 - 内容页显示目录大纲
  25. * @param {[type]} toc_id [目录大纲的最外层元素id]
  26. * @param {[type]} content_id [内容的元素id]
  27. * @return {[type]} [description]
  28. */
  29. function ey_outline_toc(content_id, toc_id, scrollTop)
  30. {
  31. setTimeout(function(){
  32. // 是否要显示目录大纲
  33. var is_show_toc = false;
  34. // 获取要显示目录的元素
  35. const tocContainer = document.getElementById(toc_id);
  36. if (tocContainer) {
  37. // 获取要提取h2\h3\h4\h5\h6的内容元素
  38. const articleObj = document.getElementById(content_id);
  39. // 获取所有标题元素
  40. if (articleObj) {
  41. const headers = articleObj.querySelectorAll('h2, h3');
  42. // 内容里是否存在h2\h3\h4\h5\h6标签
  43. if (headers.length > 0) {
  44. // 获取锚点
  45. var anchor = window.location.hash;
  46. // 创建目录列表
  47. const tocList = document.createElement('ul');
  48. // 遍历标题元素,创建目录项
  49. headers.forEach((header) => {
  50. const level = header.tagName.substr(1);
  51. const tocItem = document.createElement('li');
  52. const link = document.createElement('a');
  53. var name = '';
  54. if (header.id) {
  55. name = header.id;
  56. } else if (header.querySelector('a') && header.querySelector('a').name) {
  57. name = header.querySelector('a').name;
  58. }
  59. if (name) {
  60. var data_top = -1;
  61. try {
  62. data_top = $("#"+content_id+" a[name='" + name + "']").offset().top;
  63. }catch(err){}
  64. link.setAttribute('data-top', data_top);
  65. if (anchor.length > 0 && anchor == `#${name}`) {
  66. link.setAttribute('class', 'ey_toc_selected');
  67. }
  68. link.href = `#${name}`;
  69. link.textContent = name;
  70. tocItem.appendChild(link);
  71. tocItem.setAttribute('class', `ey_toc_h${level}`);
  72. tocItem.style.paddingLeft = ((level - 2) * 1) + 'em';
  73. tocList.appendChild(tocItem);
  74. // 显示目录大纲
  75. is_show_toc = true;
  76. }
  77. });
  78. if (is_show_toc) {
  79. // 将目录列表添加到容器中
  80. tocContainer.appendChild(tocList);
  81. }
  82. }
  83. }
  84. if (is_show_toc) {
  85. tocContainer.style.display = "block";
  86. // 自动绑定点击滑动事件
  87. if (window.jQuery) {
  88. if (!scrollTop) scrollTop = 'unbind';
  89. if ('unbind' != scrollTop) {
  90. $('#'+toc_id+' ul li').on('click', function(){
  91. var aObj = $(this).find('a');
  92. var name = aObj.attr('data-name');
  93. if (!name) {
  94. name = aObj.attr('href');
  95. name = name.replace('#', '');
  96. aObj.attr('data-name', name);
  97. }
  98. // aObj.attr('href', 'javascript:void(0);');
  99. aObj.attr('data-name', name);
  100. $('#'+toc_id+' ul li').find('a').removeClass('ey_toc_selected');
  101. aObj.addClass('ey_toc_selected');
  102. var contentObj = $("#"+content_id+" a[name='" + name + "']");
  103. if (0 < contentObj.length) {
  104. var data_top = aObj.attr('data-top');
  105. if (data_top <= -1) {
  106. data_top = contentObj.offset().top;
  107. }
  108. $("html,body").animate({
  109. scrollTop: data_top - scrollTop
  110. })
  111. }
  112. });
  113. // 刷新页面自动定位到锚点位置
  114. setTimeout(function(){
  115. $('#'+toc_id+' ul li').find('a.ey_toc_selected').click();
  116. }, 300);
  117. }
  118. }
  119. }
  120. }
  121. }, 10);
  122. }
  123. /**
  124. * 设置cookie
  125. * @param {[type]} name [description]
  126. * @param {[type]} value [description]
  127. * @param {[type]} time [description]
  128. */
  129. function ey_setCookies(name, value, time)
  130. {
  131. var cookieString = name + "=" + escape(value) + ";";
  132. if (time != 0) {
  133. var Times = new Date();
  134. Times.setTime(Times.getTime() + time);
  135. cookieString += "expires="+Times.toGMTString()+";"
  136. }
  137. document.cookie = cookieString+"path=/";
  138. }
  139. // 读取 cookie
  140. function getCookie(c_name)
  141. {
  142. if (document.cookie.length>0)
  143. {
  144. c_start = document.cookie.indexOf(c_name + "=")
  145. if (c_start!=-1)
  146. {
  147. c_start=c_start + c_name.length+1
  148. c_end=document.cookie.indexOf(";",c_start)
  149. if (c_end==-1) c_end=document.cookie.length
  150. return unescape(document.cookie.substring(c_start,c_end))
  151. }
  152. }
  153. return "";
  154. }
  155. function ey_getCookie(c_name)
  156. {
  157. return getCookie(c_name);
  158. }
  159. function getQueryString(name) {
  160. var reg = new RegExp("(^|&)" + name + "=([^&]*)(&|$)", "i");
  161. var r = window.location.search.substr(1).match(reg);
  162. if (r != null) return unescape(r[2]);
  163. return null;
  164. }