久久久色AV,亚洲好吊色,91一二三区,3D大奶大鸡吧,九九热在线观看,欧美99一区二区,人妻丝袜一区,三级字幕成人网,日韩国产尤物喷水

找軟件用軟件,就到華軍軟件園!

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

https://user.onlinedown.net/login

掃碼添加企業(yè)微信

如有產(chǎn)品建議或問題反饋,歡迎告訴我們,您的意見是我們進(jìn)步的動(dòng)力!

掃碼添加官方公眾號(hào)

FCKeditor編輯器

FCKeditor編輯器

v4.8.0 完整版 華軍軟件園
二維碼
軟件大?。?/span>1.51MB
軟件語言:簡(jiǎn)體中文
下載次數(shù):0次
更新時(shí)間:2024-12-30
軟件版本:v4.8.0 完整版
軟件分類:編程工具
軟件類型:國(guó)產(chǎn)軟件
運(yùn)行環(huán)境:Win All
軟件授權(quán):共享軟件
殺毒檢測(cè):
無插件 360通過 金山通過
軟件評(píng)分:

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

為您推薦:- FCKeditor編輯器

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

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

在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è)置

常見問題

關(guān)閉
电白县| 新泰市| 凤阳县| 保定市| 罗平县| 平遥县| 威信县| 裕民县| 徐水县| 静海县| 闸北区| 巴南区| 鹰潭市| 赣榆县| 福安市| 柘城县| 乾安县| 沂南县| 锡林浩特市| 丰原市| 蓬安县| 同仁县| 台江县| 敦化市| 禹城市| 玉山县| 阿巴嘎旗| 临清市| 监利县| 玉山县| 响水县| 云阳县| 舟山市| 浦县| 衡东县| 安吉县| 南涧| 珲春市| 龙山县| 柳林县| 汝城县|