php 中調用fckeditor網頁編輯器方法
來源:程序員人生 發布時間:2014-05-24 01:06:59 閱讀次數:2600次
下面中要在html 中調用就行了
- <script src=”fckeditor/fckeditor.js”></script>
- <script type=”text/網頁特效”>
- function showfck(){
- var ofckeditor = new fckeditor('content') ;
- ofckeditor.basepath = ‘fckeditor/' ;
- ofckeditor.toolbarset = ‘basic' ;
- ofckeditor.width = ‘100%' ;
- ofckeditor.height = ‘200′ ;
- ofckeditor.value = ” ;
- ofckeditor.replacetextarea() ;
- document.getelementbyidx(”btnshow”).disabled = ‘true';
- document.getelementbyidx(”btnshow”).style.display = ‘none';
- }
- </script>
- <textarea name=”content”></textarea>
- <input id=btnshow style=”display:inline” type=button onclick=”showfck()”>
今天我們要講了是關于php如何調用代碼如:
- <?
- include("../editor/fckeditor.php");
- $ofckeditor = new fckeditor('fckeditor1') ;
- $ofckeditor->basepath = '../editor/';
- $ofckeditor->value = '';
- $ofckeditor->width = '100%' ;
- $ofckeditor->height = '360' ;
- $ofckeditor->create() ;
- ?>
如果php要獲取值就直接 $_post['fckeditor1']; 就可以了。
生活不易,碼農辛苦
如果您覺得本網站對您的學習有所幫助,可以手機掃描二維碼進行捐贈
------分隔線----------------------------
------分隔線----------------------------