설명 없음
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

get_field_addonextitem.htm 5.0KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102
  1. <span id="FieldAddonextitem" class="custom_fields"></span>
  2. <script type="text/javascript">
  3. $(function() {
  4. var aidNew = {$field.aid|default='0'};
  5. var typeidNew = {$typeid|default='0'};
  6. if (!typeidNew) typeidNew = {$field.typeid|default='0'};
  7. var channeltypeNew = {$channeltype|default='0'};
  8. var ControllerName = '{$Think.const.CONTROLLER_NAME}';
  9. var ActionName = '{$Think.const.ACTION_NAME}';
  10. GetAddonextitem(0, typeidNew, channeltypeNew, aidNew, false, ControllerName, ActionName);
  11. });
  12. function GetAddonextitem(init, typeidNew, channeltypeNew, aidNew, is_destroy, ControllerName, ActionName) {
  13. layer.load(3, {shade: [0.5,'#fff']});
  14. ControllerName = ControllerName ? ControllerName : '';
  15. ActionName = ActionName ? ActionName : '';
  16. $.ajax({
  17. url: "{:url('Archives/ajax_get_addonextitem')}",
  18. data: {typeid: typeidNew, channeltype: channeltypeNew, aid: aidNew, controller_name: ControllerName, action_name:ActionName, _ajax:1},
  19. type:'get',
  20. success:function(res) {
  21. layer.closeAll();
  22. if (res.code == 0) {
  23. layer.alert(res.msg, {icon: 2, title:false});
  24. } else {
  25. var EditorSelect = {$editor.editor_select};
  26. if (2 == EditorSelect) {
  27. // 编辑器内容数据提取
  28. var contentData = [];
  29. $.each(res.data.htmltextField, function (index, value) {
  30. var contentID = 'addonFieldExt_' + value;
  31. var getContent = '';
  32. for (instance in CKEDITOR.instances) {
  33. CKEDITOR.instances[contentID].updateElement();
  34. getContent = CKEDITOR.instances[contentID].getData();
  35. }
  36. contentData.push(getContent);
  37. });
  38. // 覆盖原先的编辑器HTML
  39. $('#FieldAddonextitem').empty().html(res.data.html);
  40. // 追加编辑器的内容
  41. $.each(res.data.htmltextField, function (index, value) {
  42. if (contentData[index]) {
  43. var contentID = 'addonFieldExt_' + value;
  44. CKEDITOR.instances[contentID].setData(contentData[index]);
  45. }
  46. });
  47. } else if (1 == EditorSelect) {
  48. $('#FieldAddonextitem').empty().html(res.data.html);
  49. if (1 == init) {
  50. $.each(res.data.htmltextField, function (index, value) {
  51. showEditor_1597892187('addonFieldExt_'+value);
  52. });
  53. }
  54. }
  55. // 自动远程图片本地化和自动清除本站链接
  56. var editor_addonFieldExt = '';
  57. $.each(res.data.htmltextField, function (index, value) {
  58. if ($('#editor_addonFieldExt')) {
  59. if (editor_addonFieldExt) {
  60. editor_addonFieldExt += ','+value;
  61. }else{
  62. editor_addonFieldExt = value;
  63. }
  64. }
  65. });
  66. if (editor_addonFieldExt) {
  67. $('#editor_addonFieldExt').val(editor_addonFieldExt);
  68. }
  69. }
  70. },
  71. error: function(e){
  72. layer.closeAll();
  73. layer.alert(e.responseText, {icon: 2, title:false});
  74. }
  75. });
  76. }
  77. // 渲染编辑器
  78. function showEditor_1597892187(elemtid) {
  79. var content = '';
  80. try{
  81. content = UE.getEditor(elemtid).getContent();
  82. UE.getEditor(elemtid).destroy();
  83. }catch(e){}
  84. var serverUrl = eyou_basefile+'?m=admin&c=Ueditor&a=index&savepath=ueditor&lang='+__lang__;
  85. var options = {
  86. serverUrl : serverUrl,
  87. zIndex: 999,
  88. initialFrameWidth: "100%", //初化宽度
  89. initialFrameHeight: 450, //初化高度
  90. focus: false, //初始化时,是否让编辑器获得焦点true或false
  91. maximumWords: 99999,
  92. removeFormatAttributes: 'class,style,lang,width,height,align,hspace,valign',//允许的最大字符数 'fullscreen',
  93. pasteplain:false, //是否默认为纯文本粘贴。false为不使用纯文本粘贴,true为使用纯文本粘贴
  94. autoHeightEnabled: false,
  95. toolbars: ueditor_toolbars
  96. };
  97. eval("ue_"+elemtid+" = UE.getEditor(elemtid, options);ue_"+elemtid+".ready(function() {ue_"+elemtid+".setContent(content);});");
  98. }
  99. </script>