• 加载Editor


       <div id="contentDiv" style = " 98% ;height:100%; clear: both;margin-top: 10px;display:none;">
        <script id="content" name="content" type="text/plain" ></script>
       </div>

    $(function(){

       introduceEditor = UE.getEditor('content');
        var selectPath = '<%=request.getContextPath()%>/advertisement/selectAdvertHelp';
            $.post(selectPath,null,function(result)
              {
             if(result.success){
               $('#fm').form('load',result.advert);
                   $("#contentDiv").css("display","block");
              //Editor加载数据
               introduceEditor.ready(function(){
                   introduceEditor.setContent(result.advert.content);   
                  })
              
               
             }else{
              $.messager.alert('警告','查询错误!');
             }
             
            },'json');

    }

    查看去掉编辑框

    <body id='body'>

    </body>

     $(function() {    

       var selectPath = '<%=request.getContextPath()%>/advertisement/selectAdvertHelp';    

      $.ajax({    

       type : "GET",   

       url : selectPath,     

      data : null,     

      dataType : "json",     

      success : function(data) {    

        if (data.success == true) {       
        $("#body").append(data.help.content);

         } else {       

        $.messager.alert("操作提示", "操作失败!", "error");     

     }

        },     error : function() {      $.messager.alert("操作提示", "操作失败!", "error");     }    });    });

  • 相关阅读:
    GAMBIT、ICEM、HYPERMESH耦合面的处理方法
    如何用hypermesh生成包含interface的流体网格
    python求数字位数的方法
    drawPython
    Python入门计划
    书法与篆刻创作结课
    易忽视的Python知识点
    Ubuntu中,wxpython的TextCtrl引发的error:_pixman_log_error
    在Ubuntu15.10中,使用wxPython的webview和JS进行交互
    PyCharm导入tensorflow包
  • 原文地址:https://www.cnblogs.com/cuijinlong/p/6554372.html
Copyright © 2020-2023  润新知