我有一些旧代码需要快速更新,我需要用新的ckeditor替换旧的fckeditor。这是我调用fckeditor的javascript
<script type="text/javascript">
{
function swap_to_wysiwyg_short_description()
{
var oFCKeditor = new FCKeditor( 'short_description' ) ;
oFCKeditor.BasePath = 'fckeditor/' ;
oFCKeditor.Value = 'This is some <strong>sample text</strong>. You are using <a href="http://www.fckeditor.net/">FCKeditor</a>.' ;
document.getElementById('short_description_button').style.visibility = "hidden";
oFCKeditor.ReplaceTextarea() ;
}
}
</script>
这会调用javascript文件:
fckeditor/fckeditor.js
我正在考虑而不是改变我所有的html文件,我可以编辑fckeditor并使这个调用ckeditor?
这是调用ckeditor的新代码:
<script>
CKEDITOR.replace( 'short_description', {
filebrowserBrowseUrl: '/store/admin/kcfinder/browse.php',
filebrowserUploadUrl: '/store/admin/kcfinder/upload.php'
});
</script>
如何更改fckeditor / fckeditor.js以调用ckeditor而无需更改所有html页面?
答案 0 :(得分:0)
也许将来你应该做一个函数来调用你的所见即所得编辑器并把你的代码放在那里。您将完成这项工作一次,将来将编辑器更改为其他编辑器将没有问题。