jqueryでfckeditorのコンテンツを取得するにはどうすればよいですか?
JScript コード
<!--
Code highlighting produced by Actipro CodeHighlighter (freeware)
http://www.CodeHighlighter.com/
-->var content = $("#FCKeditor1").val()
を使用しましたが、ソース ファイルを表示するために
を取得できませんでした。エディタの ID は FCkeditor
です。アドバイスをください
-----解決策---------
function getEditorHTMLContents(EditorName)
{
var oEditor = FCKeditorAPI.GetInstance(EditorName);
return(oEditor.GetXHTML(true));
}
// のテキスト コンテンツを取得します。 editor
function getEditorTextContents(EditorName)
{
var oEditor = FCKeditorAPI.GetInstance(EditorName);
return(oEditor.EditorDocument.body.innerText);
}
//Setアップエディター デバイス内のコンテンツ
function SetEditorContents(EditorName, ContentStr)
{
var oEditor = FCKeditorAPI.GetInstance(EditorName) ;
oEditor.SetHTML(ContentStr) ;
}
……