>백엔드 개발 >PHP 튜토리얼 >php百度在线编辑器ueditor使用问题,求大神解答

php百度在线编辑器ueditor使用问题,求大神解答

WBOY
WBOY원래의
2016-06-06 20:22:411180검색

<code>//我这种post过去的文本能直接保存到数据库吗
//




    <meta charset="UTF-8">
    <title>ueditor demo</title>
    <script type="text/javascript">
    //window.UEDITOR_HOME_URL = "./Ueditor/";
    </script>



    <form action="server.php" method="post">
    <!-- 加载编辑器的容器 -->
    <script id="container" name="content" type="text/plain">
     </script>
    
    <!-- 配置文件 -->
    <script type="text/javascript" src="ueditor.config.js"></script>
    <!-- 编辑器源码文件 -->
    <script type="text/javascript" src="ueditor.all.js"></script>
    <!-- 实例化编辑器 -->
    <script type="text/javascript">
        var ue = UE.getEditor('container');
    </script>
   <input type="submit" name="submit" value="提交">
    </form>


</code>

回复内容:

<code>//我这种post过去的文本能直接保存到数据库吗
//




    <meta charset="UTF-8">
    <title>ueditor demo</title>
    <script type="text/javascript">
    //window.UEDITOR_HOME_URL = "./Ueditor/";
    </script>



    <form action="server.php" method="post">
    <!-- 加载编辑器的容器 -->
    <script id="container" name="content" type="text/plain">
     </script>
    
    <!-- 配置文件 -->
    <script type="text/javascript" src="ueditor.config.js"></script>
    <!-- 编辑器源码文件 -->
    <script type="text/javascript" src="ueditor.all.js"></script>
    <!-- 实例化编辑器 -->
    <script type="text/javascript">
        var ue = UE.getEditor('container');
    </script>
   <input type="submit" name="submit" value="提交">
    </form>


</code>
성명:
본 글의 내용은 네티즌들의 자발적인 기여로 작성되었으며, 저작권은 원저작자에게 있습니다. 본 사이트는 이에 상응하는 법적 책임을 지지 않습니다. 표절이나 침해가 의심되는 콘텐츠를 발견한 경우 admin@php.cn으로 문의하세요.