程序師世界是廣大編程愛好者互助、分享、學習的平台,程序師世界有你更精彩!
首頁
編程語言
C語言|JAVA編程
Python編程
網頁編程
ASP編程|PHP編程
JSP編程
數據庫知識
MYSQL數據庫|SqlServer數據庫
Oracle數據庫|DB2數據庫
 程式師世界 >> 編程語言 >> 網頁編程 >> PHP編程 >> 關於PHP編程 >> php 中調用fckeditor網頁編輯器方法

php 中調用fckeditor網頁編輯器方法

編輯:關於PHP編程

下面中要在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'];


就可以了。

更多詳細內容請查看:http://www.bKjia.c0m/wy/dreamweaver/34997.htm

  1. 上一頁:
  2. 下一頁:
Copyright © 程式師世界 All Rights Reserved