$(function(){ UE.getEditor('myEditor'); $('#btn').click(function(){ //手动提交需要手动同步编辑器数据 UE.getEditor('myEditor').sync(); $('#form')[0].submit(); }) //--自动切换提交地址---- var version = UE.getEditor('myEditor').options.imageUrl||"php", form=$('#form')[0]; if(version.match(/php/)){ form.action="../php/getContent.php"; }else if(version.match(/net/)){ form.action="../net/getContent.ashx"; }else if(version.match(/jsp/)){ form.action="../jsp/getContent.jsp"; } })

欢迎使用UEditor!