ホームページ >バックエンド開発 >PHPチュートリアル >fckeditor の呼び出しに関連する問題

fckeditor の呼び出しに関連する問題

WBOY
WBOYオリジナル
2016-06-13 13:39:53964ブラウズ

fckeditor の呼び出しに関する問題
編集する必要がある場所が 2 か所ありますが、通常は 1 つだけが呼び出されます

HTML コードの変更方法
<!--

Code highlighting produced by Actipro CodeHighlighter (freeware)
http://www.CodeHighlighter.com/

--><script language="javascript" type="text/javascript" src="editor/fckeditor/fckeditor.js"></script>
<script type="text/javascript">
window.onload = function()
{
var oFCKeditor = new FCKeditor( 'content' ) ;
oFCKeditor.Height = "400";
oFCKeditor.Width = "100%" ; 
oFCKeditor.BasePath = '/editor/fckeditor/' ;
oFCKeditor.ReplaceTextarea() ;
}

function fckAddText(txt)
{
var oEditor = FCKeditorAPI.GetInstance('content');
oEditor.InsertHtml(txt);
}

window.onload = function()
{
var oFCKeditor = new FCKeditor( 'content2' ) ;
oFCKeditor.Height = "400";
oFCKeditor.Width = "100%" ; 
oFCKeditor.BasePath = '/editor/fckeditor/' ;
oFCKeditor.ReplaceTextarea() ;
}

function fckAddText(txt)
{
var oEditor = FCKeditorAPI.GetInstance('content2');
oEditor.InsertHtml(txt);
}


</script>


-- ----解決策--------------------
編集する必要がある
2 か所について話し合います。通常は 1 つだけが呼び出されます。


HTML コード