熱點推薦:
您现在的位置: 電腦知識網 >> 編程 >> PHP編程 >> 正文

ueditor 1.2.6 使用方法說明

2022-06-13   來源: PHP編程 
以下文本是以php版本為例的對ueditor 的使用方法進行了詳細的說明介紹需要的朋友可以過來參考下  

  本文以php版本為例
文件下載
還可以自己先定義內容然後下載這樣可以幫助我們精簡不少東西
以本地php環境為例現在www目錄下建立一個app目錄作為測試目錄然後將下載的ueditor文件夾解壓到app文件夾下

  
然後在app文件夾下建立一個indexphp文件
然後輸入以下代碼

復制代碼 代碼如下:
<!DOCTYPE html>
<html>
<head>
<title>編輯器完整版實例</title>
    <meta httpequiv="ContentType" content="text/html; charset=UTF">
 <script type="text/javascript" src="/ueditor/ueditorconfigjs"></script>
 <script type="text/javascript" src="/ueditor/ueditoralljs"></script>
 <link rel="stylesheet" href="/ueditor/themes/default/css/ueditorcss"/>
</head>
<body>
    <h>UEditor提交示例</h>
    <form id="form" method="post" target="_blank">
        <script type="text/plain" id="myEditor" name="myEditor">
            <p>歡迎使用UEditor!</p>
        </script>
        <input type="submit" value="通過input的submit提交">
    </form>
   <p>
       從開始會自動同步數據無需再手動調用sync方法
       <button onclick="documentgetElementById(form)submit()">通過js調用submit提交</button>
   </p>
    <script type="text/javascript">
        var editor_a = UEgetEditor(myEditor{initialFrameHeight:});
        //自動切換提交地址
        var doc=document
            version=editor_aoptionsimageUrl||"php"
            form=docgetElementById("form");
            formaction="/getContentphp";
    </script>
</body>
</html>

  
然後再浏覽器輸入localhost/app/
就可以查看編輯器了
然後會發現圖片上傳功能無法使用需要打開ueditorconfigjs
然後找到這一行代碼

復制代碼 代碼如下:
var URL = windowUEDITOR_HOME_URL || (function(){

  
然後再這一行代碼的上面加上這行代碼

復制代碼 代碼如下:
windowUEDITOR_HOME_URL||"/app/ueditor/";

  

然後刷新一下頁面圖片上傳功能就可以使用了
ueditor的官方說明文檔地址
官方說明文檔中的文件名有錯誤(應該是版本升級之後沒有修改過來)請大家注意


From:http://tw.wingwit.com/Article/program/PHP/201311/21260.html
    推薦文章
    Copyright © 2005-2022 電腦知識網 Computer Knowledge   All rights reserved.