<script type="text/javascript">
$().ready(function(){
var editor = document.getElementById("editor3");
//var ue = UE.getEditor('editor');
if(editor) {
//var ue = UE.getEditor('editor');
// checkdata();
}
//var ue = UE.getEditor('editor');
function checkdata(){
/*
$.post("../../lib/ueditor/index.html",{
Page_id : <?php echo $id ?>,
}, function(data){
$("#editor").html(data);
} );
} // alert("editor存在");*/
$.get("../../lib/ueditor/index.html",function(result){
if(result != null || result != ""){ $('#editor3').html(result)}
}
);
/*
$.get('page/tree/imagedelete.php',{id:x},function(result){
$('#editor3').html(result);
document.getElementById('editor3').style.display='';
});
*/ }
}); </script>

最新文章

  1. ios 写项目的时候遇到的问题及解决方案(2)
  2. ASM:《X86汇编语言-从实模式到保护模式》第七章应用例:用adc命令计算1到1000的累加
  3. Swift-3-字符串和字符
  4. mysql_fetch_row,mysql_fetch_array,mysql_fetch_assoc的区别
  5. 转:[gevent源码分析] 深度分析gevent运行流程
  6. [转贴]C++、C#写的WebService相互调用
  7. 内容替换Filter
  8. Xcode7真机调试iOS应用程序
  9. 《Algorithms 4th Edition》读书笔记——3.1 符号表(Elementary Symbol Tables)-Ⅰ
  10. 如何获取浏览器的DNS解析时间
  11. 谈谈Nancy中让人又爱又恨的Diagnostics【上篇】
  12. 使用notepad++作为keil的外部编辑器
  13. JAVA随笔----浅谈lombok注解
  14. 致我们再也回不去的 Github ...
  15. memset()函数及其作用(转)
  16. 中国各省市县级 JSON 文件
  17. linux基础实操四
  18. 6-1 并行程序模拟 uva210
  19. Python之Pandas知识点
  20. java并发基础(六)--- 活跃性、性能与可伸缩性

热门文章

  1. 【linux】ubuntu下crontab无效解决方法
  2. cf789d 图论计数,自环闭环
  3. Sony笔记本
  4. POJ 2752 Seek the Name, Seek the Fame(next数组运用)
  5. ubuntu装软件包
  6. Linux 僵尸进程的筛选和查杀
  7. BZOJ2843 极地旅行社 LCT
  8. 093实战 Nginx日志切割,以及脚本上传nginx的切割日志
  9. 《Gradle权威指南》--Android Gradle测试
  10. python2和3在处理字符串上的区别