Без опису
Ви не можете вибрати більше 25 тем Теми мають розпочинатися з літери або цифри, можуть містити дефіси (-) і не повинні перевищувати 35 символів.

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347
  1. var oldhtml = ''; // 原始内容
  2. var epageJson = {}; // 页面标识,建议是文件名
  3. var backgroundColor = '';
  4. jQuery(function($){
  5. // 去除所有A标签链接
  6. // function remove_a_href()
  7. // {
  8. // $('a').each(function(index, item){
  9. // $(item).attr('href', 'javascript:void(0);');
  10. // });
  11. // }
  12. // 去除所有A标签链接
  13. removeAHref();
  14. setTimeout(function(){
  15. removeAHref();
  16. },3000);
  17. /**
  18. * 页面右上角显示还原数据的操作
  19. */
  20. $('body').prepend('<div e-id="clearall" class="uiset_back-btn" title="初始化设置" onclick="eyou_clear();"></div>');
  21. /**
  22. * Make the elements editable
  23. */
  24. $('.eyou-edit').mouseenter(function(e){ // 鼠标移入选中状态,只针对该绑定元素
  25. e.stopPropagation();
  26. var that = this;
  27. eyou_mouseenter(that);
  28. })
  29. .mouseleave(function(e){ // 鼠标移出消除选中状态,只针对该绑定元素
  30. e.stopPropagation();
  31. var that = this;
  32. eyou_mouseleave(that);
  33. });
  34. // 鼠标移入选中状态,只针对该绑定元素
  35. function eyou_mouseenter(that)
  36. {
  37. var e_type = $(that).attr('e-type');
  38. $(that).addClass('uiset');
  39. $('body').find('b.ui_icon').remove();
  40. if (-1 < $.inArray(e_type, ['map','upload'])) {
  41. $('body').find('div.ui_zhezhaoceng').remove();
  42. $(that).prepend('<b class="ui_icon"></b><div class="ui_zhezhaoceng"></div>');
  43. } else {
  44. $(that).prepend('<b class="ui_icon"></b>');
  45. backgroundColor = $(that).find('b.ui_icon').parent().css('background-color');
  46. $(that).find('b.ui_icon').parent().css('background-color', 'rgba(0, 0, 0, 0.2)');
  47. }
  48. $(that).find('b.ui_icon').on("click", function(e){
  49. e.stopPropagation();
  50. var that = $(this).parent();
  51. if (e_type == 'text') {
  52. oldhtml = $(that).html();
  53. eyou_text(that);
  54. } else if (e_type == 'html') {
  55. oldhtml = $(that).html();
  56. oldhtml = oldhtml.replace('<b class="ui_icon"></b>', '');
  57. eyou_html(that);
  58. } else if (e_type == 'type') {
  59. eyou_type(that);
  60. } else if (e_type == 'arclist' || e_type == 'artlist') {
  61. eyou_arclist(that);
  62. } else if (e_type == 'channel' || e_type == 'models') {
  63. eyou_channel(that);
  64. } else if (e_type == 'upload') {
  65. eyou_upload(that);
  66. } else if (e_type == 'adv') {
  67. eyou_adv(that);
  68. } else if (e_type == 'map') {
  69. eyou_map(that);
  70. } else if (e_type == 'code') {
  71. oldhtml = $(that).html();
  72. oldhtml = oldhtml.replace('<b class="ui_icon"></b>', '');
  73. eyou_code(that);
  74. } else if (e_type == 'background') {
  75. eyou_background(that);
  76. }
  77. // eyou_mouseleave(that);
  78. });
  79. if (that.nodeName == 'A') {
  80. $(that).attr('href', 'javascript:void(0);');
  81. }
  82. }
  83. // 鼠标移出消除选中状态,只针对该绑定元素
  84. function eyou_mouseleave(that)
  85. {
  86. $(that).removeClass('uiset');
  87. var e_type = $(that).attr('e-type');
  88. if (-1 < $.inArray(e_type, ['map','upload'])) {
  89. $(that).find('div.ui_zhezhaoceng').remove();
  90. $(that).find('b.ui_icon').remove();
  91. } else {
  92. $(that).find('b.ui_icon').parent().css('background-color', backgroundColor);
  93. $(that).find('b.ui_icon').remove();
  94. }
  95. $(that).bind('mouseenter');
  96. }
  97. // 递归获取最近含有e-page的元素对象
  98. function get_epage(obj)
  99. {
  100. if ($(obj).attr('e-page') == undefined) {
  101. var parentObj = $(obj).parent();
  102. if (parentObj.find('body').length > 0) {
  103. epageJson = {
  104. e_page: ''
  105. };
  106. return false;
  107. } else {
  108. get_epage(parentObj);
  109. }
  110. } else {
  111. epageJson = {
  112. e_page: $(obj).attr('e-page')
  113. };
  114. return false;
  115. }
  116. }
  117. // 纯文本编辑
  118. function eyou_text(that)
  119. {
  120. get_epage(that);
  121. var e_page = epageJson.e_page;
  122. var e_id = $(that).attr('e-id');
  123. if (e_page == '' || e_id == undefined) {
  124. eyou_showErrorAlert('html报错:uitext标签的外层html元素缺少属性 e-page | e-id');
  125. return false;
  126. }
  127. parent.eyou_text(that, e_id, e_page, oldhtml);
  128. }
  129. // 带html的富文本编辑器
  130. function eyou_html(that)
  131. {
  132. get_epage(that);
  133. var e_page = epageJson.e_page;
  134. var e_id = $(that).attr('e-id');
  135. if (e_page == '' || e_id == undefined) {
  136. eyou_showErrorAlert('html报错:uihtml标签的外层html元素缺少属性 e-page | e-id');
  137. return false;
  138. }
  139. parent.eyou_html(that, e_id, e_page, oldhtml);
  140. }
  141. // 栏目编辑
  142. function eyou_type(that)
  143. {
  144. get_epage(that);
  145. var e_page = epageJson.e_page;
  146. var e_id = $(that).attr('e-id');
  147. if (e_page == '' || e_id == undefined) {
  148. eyou_showErrorAlert('html报错:uitype标签的外层html元素缺少属性 e-page | e-id');
  149. return false;
  150. }
  151. parent.eyou_type(that, e_id, e_page);
  152. }
  153. // 文章栏目编辑
  154. function eyou_arclist(that)
  155. {
  156. get_epage(that);
  157. var e_page = epageJson.e_page;
  158. var e_id = $(that).attr('e-id');
  159. if (e_page == '' || e_id == undefined) {
  160. eyou_showErrorAlert('html报错:uiarclist标签的外层html元素缺少属性 e-page | e-id');
  161. return false;
  162. }
  163. parent.eyou_arclist(that, e_id, e_page);
  164. }
  165. // 栏目列表编辑
  166. function eyou_channel(that)
  167. {
  168. get_epage(that);
  169. var e_page = epageJson.e_page;
  170. var e_id = $(that).attr('e-id');
  171. if (e_page == '' || e_id == undefined) {
  172. eyou_showErrorAlert('html报错:uichannel标签的外层html元素缺少属性 e-page | e-id');
  173. return false;
  174. }
  175. parent.eyou_channel(that, e_id, e_page);
  176. }
  177. // 图片编辑
  178. function eyou_upload(that)
  179. {
  180. get_epage(that);
  181. var e_page = epageJson.e_page;
  182. var e_id = $(that).attr('e-id');
  183. if (e_page == '' || e_id == undefined) {
  184. eyou_showErrorAlert('html报错:uiupload标签的外层html元素缺少属性 e-page | e-id');
  185. return false;
  186. }
  187. var imgsrc = $(that).find('img').attr('src');
  188. var oldhtml = $.trim($(that).html());
  189. oldhtml = encodeURI(oldhtml);
  190. parent.eyou_upload(that, e_id, e_page, oldhtml, imgsrc);
  191. }
  192. // 背景图片编辑
  193. function eyou_background(that)
  194. {
  195. get_epage(that);
  196. var e_page = epageJson.e_page;
  197. var e_id = $(that).attr('e-id');
  198. if (e_page == '' || e_id == undefined) {
  199. eyou_showErrorAlert('html报错:uibackground标签的外层html元素缺少属性 e-page | e-id');
  200. return false;
  201. }
  202. var imgsrc = $(that).css("backgroundImage").replace('url(', '').replace(')', '');
  203. re = new RegExp("'","g");
  204. imgsrc = imgsrc.replace(re, "");
  205. re2 = new RegExp("\"","g");
  206. imgsrc = imgsrc.replace(re2, "");
  207. imgsrc = $.trim(imgsrc);
  208. parent.eyou_background(that, e_id, e_page, imgsrc);
  209. }
  210. // 广告设置
  211. function eyou_adv(that)
  212. {
  213. var e_id = $(that).attr('e-id');
  214. parent.eyou_adv(that, e_id);
  215. }
  216. // 百度地图
  217. function eyou_map(that)
  218. {
  219. get_epage(that);
  220. var e_page = epageJson.e_page;
  221. var e_id = $(that).attr('e-id');
  222. if (e_page == '' || e_id == undefined) {
  223. eyou_showErrorAlert('html报错:uimap标签的外层html元素缺少属性 e-page | e-id');
  224. return false;
  225. }
  226. parent.eyou_map(that, e_id, e_page);
  227. }
  228. // 源代码编辑
  229. function eyou_code(that)
  230. {
  231. get_epage(that);
  232. var e_page = epageJson.e_page;
  233. var e_id = $(that).attr('e-id');
  234. if (e_page == '' || e_id == undefined) {
  235. eyou_showErrorAlert('html报错:uicode标签的外层html元素缺少属性 e-page | e-id');
  236. return false;
  237. }
  238. parent.eyou_code(that, e_id, e_page, oldhtml);
  239. }
  240. });
  241. // 去除所有A标签链接
  242. function removeAHref()
  243. {
  244. $('a').mouseenter(function(e){ // 鼠标移入选中状态,只针对该绑定元素
  245. $(this).attr('data-ey_href', $(this).attr('href')).removeAttr('href');
  246. $(this).attr('data-ey_target', $(this).attr('target')).removeAttr('target');
  247. })
  248. .mouseleave(function(e){ // 鼠标移出消除选中状态,只针对该绑定元素
  249. $(this).attr('href', $(this).attr('data-ey_href')).removeAttr('data-ey_href');
  250. $(this).attr('target', $(this).attr('data-ey_target')).removeAttr('data-ey_target');
  251. });
  252. }
  253. /**
  254. * 获取修改之前的内容
  255. */
  256. function eyou_getOldHtml()
  257. {
  258. return oldhtml;
  259. }
  260. // 清除全部数据
  261. function eyou_clear()
  262. {
  263. parent.eyou_clear();
  264. }
  265. function eyou_showErrorMsg(msg){
  266. layer.msg(msg, {icon: 5,time: 2000});
  267. }
  268. function eyou_showSuccessMsg(msg){
  269. layer.msg(msg, {time: 1000});
  270. }
  271. function eyou_showErrorAlert(msg, icon){
  272. if (!icon && icon != 0) {
  273. icon = 5;
  274. }
  275. layer.alert(msg, {icon: icon, title: false, closeBtn: false});
  276. }
  277. /**
  278. * 封装的加载层
  279. */
  280. function eyou_layer_loading(msg){
  281. var loading = layer.msg(
  282. msg+'...&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;请勿刷新页面',
  283. {
  284. icon: 1,
  285. time: 3600000,
  286. shade: [0.2]
  287. });
  288. var index = layer.load(3, {
  289. shade: [0.1,'#fff']
  290. });
  291. return loading;
  292. }
  293. /**
  294. * 封装的加载层,用于iframe
  295. */
  296. function eyou_iframe_layer_loading(msg){
  297. var loading = parent.layer.msg(
  298. msg+'...&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;请勿刷新页面',
  299. {
  300. icon: 1,
  301. time: 3600000,
  302. shade: [0.2]
  303. });
  304. var index = parent.layer.load(3, {
  305. shade: [0.1,'#fff']
  306. });
  307. return loading;
  308. }