functions.js
上传用户:dlqqsh
上传日期:2021-11-13
资源大小:7840k
文件大小:1k
源码类别:

OA系统

开发平台:

Java

  1. function init() {
  2. tinyMCEPopup.resizeToInnerSize();
  3. }
  4. function insertEmotion(file_name, title) {
  5. title = tinyMCE.getLang(title);
  6. if (title == null)
  7. title = "";
  8. // XML encode
  9. title = title.replace(/&/g, '&');
  10. title = title.replace(/"/g, '"');
  11. title = title.replace(/</g, '&lt;');
  12. title = title.replace(/>/g, '&gt;');
  13. var html = '<img src="' + tinyMCE.baseURL + "/plugins/emotions/images/" + file_name + '" mce_src="' + tinyMCE.baseURL + "/plugins/emotions/images/" + file_name + '" border="0" alt="' + title + '" title="' + title + '" />';
  14. tinyMCE.execCommand('mceInsertContent', false, html);
  15. tinyMCEPopup.close();
  16. }