找軟件用軟件,就到華軍軟件園! 軟件發(fā)布

您好,如有軟件收錄需求,請(qǐng)將軟件打包,并附上軟件名稱(chēng)、軟件介紹、軟件相關(guān)截圖、軟件icon、軟著、營(yíng)業(yè)執(zhí)照(個(gè)人沒(méi)有營(yíng)業(yè)執(zhí)照請(qǐng)?zhí)峁?duì)應(yīng)的開(kāi)發(fā)者身份證正反面以及手持身份證本人照片),發(fā)送至郵箱 https://user.onlinedown.net/login

收起>>

發(fā)送至郵箱:news@onlinedown.net

收起>>

所在位置: 首頁(yè) — PC軟件 — 編程軟件 — 編程工具  —  FCKeditor編輯器
FCKeditor編輯器

FCKeditor編輯器  v4.8.0 完整版

二維碼
  • 軟件授權(quán): 共享軟件
  • 軟件大?。? 1.51MB
  • 軟件評(píng)分:
  • 軟件類(lèi)型: 國(guó)產(chǎn)軟件
  • 更新時(shí)間: 2024-12-30
  • 應(yīng)用平臺(tái): Win All
  • 軟件語(yǔ)言: 簡(jiǎn)體中文
  • 版      本: v4.8.0 完整版

下載服務(wù)協(xié)議見(jiàn)頁(yè)面底部

軟件介紹 相關(guān)專(zhuān)題 常見(jiàn)問(wèn)題 下載地址

為您推薦:- FCKeditor編輯器

基本簡(jiǎn)介
FCKeditor編輯器段首LOGO
FCKeditor是一款國(guó)外的在線(xiàn)HTML編輯器,功能也可以定制. 并且支持多種瀏覽器, 遵循LGPL版權(quán),可以和PHP、JavaScript、ASP、ASP.NET、ColdFusion、Java、以及ABAP等不同的編程語(yǔ)言相結(jié)合。

CKEditor調(diào)用種類(lèi)方法如下:

在ASP dot NET中調(diào)用

在ASP dot NET中調(diào)用其實(shí)是很簡(jiǎn)單的事,F(xiàn)CKEditor有一個(gè)FCKeditor dot Net (一個(gè)ASP dot NET 服務(wù)器控件),可以很容易地與ASP dot NET集成。

首先下載FCKEditor和FCKeditor dot Net服務(wù)器控件。

在PHP中調(diào)用

function FCKeditor_IsCompatibleBrowser()

{

if ( isset( $_SERVER ) ) {

$sAgent = $_SERVER['HTTP_USER_AGENT'] ;

}

else {

global $HTTP_SERVER_VARS ;

if ( isset( $HTTP_SERVER_VARS ) ) {

$sAgent = $HTTP_SERVER_VARS['HTTP_USER_AGENT'] ;

}

else {

global $HTTP_USER_AGENT ;

$sAgent = $HTTP_USER_AGENT ;

}

}

if ( strpos($sAgent, 'MSIE') !== false && strpos($sAgent, 'mac') === false && strpos($sAgent, 'Opera') === false )

{

$iVersion = (float)substr($sAgent, strpos($sAgent, 'MSIE') + 5, 3) ;

return ($iVersion >= 5.5) ;

}

else if ( strpos($sAgent, 'Gecko/') !== false )

{

$iVersion = (int)substr($sAgent, strpos($sAgent, 'Gecko/') + 6, 8) ;

return ($iVersion >= 20030210) ;

}

else if ( strpos($sAgent, 'Opera/') !== false )

{

$fVersion = (float)substr($sAgent, strpos($sAgent, 'Opera/') + 6, 4) ;

return ($fVersion >= 9.5) ;

}

else if ( preg_match( "|AppleWebKit/(d+)|i", $sAgent, $matches ) )

{

$iVersion = $matches[1] ;

return ( $matches[1] >= 522 ) ;

}

else

return false ;

}

class FCKeditor

{

public $InstanceName ;

public $BasePath ;

public $Width ;

public $Height ;

public $ToolbarSet ;

public $Value ;

public $Config ;

public function __construct( $instanceName )

{

$this->InstanceName = $instanceName ;

$this->BasePath = '../common/editor/' ;

$this->Width = '100%' ;

$this->Height = '400' ;

$this->ToolbarSet = 'Default' ;

$this->Value = '' ;

$this->Config = array() ;

}

public function Create()

{

echo $this->CreateHtml() ;

}

public function CreateHtml()

{

$HtmlValue = htmlspecialchars( $this->Value ) ;

$Html = '' ;

if ( $this->IsCompatible() )

{

if ( isset( $_GET['fcksource'] ) && $_GET['fcksource'] == "true" )

$File = 'fckeditor.original.html' ;

else

$File = 'fckeditor.html' ;

$Link = "{$this->BasePath}editor/{$File}?InstanceName={$this->InstanceName}" ;

if ( $this->ToolbarSet != '' )

$Link .= "&Toolbar={$this->ToolbarSet}" ;

$Html .= "InstanceName}" name="{$this->InstanceName}" value="{$HtmlValue}" style="display:none" />" ;

$Html .= "InstanceName}___Config" value="" . $this->GetConfigFieldString() . "" style="display:none" />" ;

$Html .= "" ;

}

else

{

if ( strpos( $this->Width, '%' ) === false )

$WidthCSS = $this->Width . 'px' ;

else

$WidthCSS = $this->Width ;

if ( strpos( $this->Height, '%' ) === false )

$HeightCSS = $this->Height . 'px' ;

else

$HeightCSS = $this->Height ;

$Html .= "InstanceName}" rows="4" cols="40" style="width: {$WidthCSS}; height: {$HeightCSS}">{$HtmlValue}" ;

}

return $Html ;

}

public function IsCompatible()

{

return FCKeditor_IsCompatibleBrowser() ;

}

public function GetConfigFieldString()

{

$sParams = '' ;

$bFirst = true ;

foreach ( $this->Config as $sKey => $sValue )

{

if ( $bFirst == false )

$sParams .= '&' ;

else

$bFirst = false ;

if ( $sValue === true )

$sParams .= $this->EncodeConfig( $sKey ) . '=true' ;

else if ( $sValue === false )

$sParams .= $this->EncodeConfig( $sKey ) . '=false' ;

else

$sParams .= $this->EncodeConfig( $sKey ) . '=' . $this->EncodeConfig( $sValue ) ;

}

return $sParams ;

}

public function EncodeConfig( $valueToEncode )

{

$chars = array(

'&' => '%26',

'=' => '%3D',

'"' => '%22' ) ;

return strtr( $valueToEncode, $chars ) ;

}

}

$editor = new FCKeditor('editor') ;//接收時(shí)$_POST['........']中的內(nèi)容

$editor->BasePath = "../common/editor/";//FCKEDITOR的路徑

?>

在需要調(diào)用的地方Create();?>

接受的文件用$_POST['editor']調(diào)用(editor)可在$editor = new FCKeditor('editor')設(shè)置

下載地址 分享軟件/應(yīng)用

使用WindSoul軟件管家下載地址:安全,快速

電信安全下載 網(wǎng)通安全下載 移動(dòng)安全下載 聯(lián)通安全下載

部分文件為zip、rar等壓縮格式,請(qǐng)下載 360壓縮 進(jìn)行壓縮!

常見(jiàn)問(wèn)題

關(guān)閉