這裏我們再來一次:進一步發揮,我發現了一個我更喜歡的解決方案:根本不在主頁面調用tinymce。
有一件事是肯定的:如果你來到這個頁面是因爲你正在使用Eric的SimpleModal。而且,如果是這樣,你肯定會使用jQuery。
考慮到這一點,爲什麼不使用jQuery版本的tinyMCE?
好的,所以我的解決方案是保持對tinyMCE javascript的調用以及您要在其中使用tinyMCE的頁面中的初始化。
在我的情況下,具體來說,我叫一個獨立模式的編輯器tinyMCE,因爲我使用simpleModal來調用我的顯示器,所以我使用jQuery加載函數。
例:加載與編輯模態
頁:showEditor.asp(ASP,因爲我有數據庫訪問將有關崗位將被編輯或類型或回覆信息)。
modal hidden div(在主應用程序頁面上):myModal。
的showEditor頁面上
:
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN"
"http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" >
<head>
<meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1" />
<!-- #include virtual="/.../my database functions . asp" -->
<script type='text/javascript' src='/your_path/jscripts/tiny_mce/jquery.tinymce.js' rel='forceLoad'></script>
<script type='text/javascript'>
$(function() {
$('textarea.tinymce').tinymce({
// Location of TinyMCE script
script_url : '/myIncludes/tinyMCE/jscripts/tiny_mce/tiny_mce.js',
// General options
theme : "advanced",
plugins : "pagebreak,style,layer,table,save,advhr,advimage,advlink,emotions,iespell,inlinepopups,insertdatetime,preview,media,searchreplace,print,contextmenu,paste,directionality,fullscreen,noneditable,visualchars,nonbreaking,xhtmlxtras,template",
// Theme options
theme_advanced_buttons1 : "save,newdocument,|,bold,italic,underline,strikethrough,|,justifyleft,justifycenter,justifyright,justifyfull,styleselect,formatselect,fontselect,fontsizeselect",
theme_advanced_buttons2 : "cut,copy,paste,pastetext,pasteword,|,search,replace,|,bullist,numlist,|,outdent,indent,blockquote,|,undo,redo,|,link,unlink,anchor,image,cleanup,help,code,|,insertdate,inserttime,preview,|,forecolor,backcolor",
theme_advanced_buttons3 : "tablecontrols,|,hr,removeformat,visualaid,|,sub,sup,|,charmap,emotions,iespell,media,advhr,|,print,|,ltr,rtl,|,fullscreen",
theme_advanced_buttons4 : "insertlayer,moveforward,movebackward,absolute,|,styleprops,|,cite,abbr,acronym,del,ins,attribs,|,visualchars,nonbreaking,template,pagebreak",
theme_advanced_toolbar_location : "top",
theme_advanced_toolbar_align : "left",
theme_advanced_statusbar_location : "bottom",
theme_advanced_resizing : true,
// Example content CSS (should be your site CSS)
content_css : "css/content.css",
// Drop lists for link/image/media/template dialogs
template_external_list_url : "lists/template_list.js",
external_link_list_url : "lists/link_list.js",
external_image_list_url : "lists/image_list.js",
media_external_list_url : "lists/media_list.js",
// Replace values for the template plugin
template_replace_values : {
username : "Some User",
staffid : "991234"
}
});
});
</script>
</head>
<body>
<textarea id='yourChosenID' class='tinymce' cols='10' rows='10'></textarea>
</body>
</html>
在我所說的編輯頁面
,我處理這樣的:
..... onClick=showEditor();
function showEditor() {
$('#myModal').load('showEditor.asp');
$('#myModal').modal({ your options here });
}
你去那裏: 一套完整的;非修飾;原始示例。根據您的喜好定製它,並特別注意src javascript調用中提到的tinymce,它指的是jQuery(jquery.tinymce.js)版本;而在jQuery函數中提到的那個是純粹的tiny_mce.js。
一種格式提示:有可用於格式化編輯器窗口上方的按鈕。例如,選擇一些文本並按下「{}」按鈕使它縮進四個空格,這將導致它被渲染爲代碼塊。有關更多信息,另請參閱http://stackoverflow.com/editing-help。 – sth 2011-01-31 00:20:46