tinyMCE 플러그인 개발 삽입 html, php, sql, js 코드 및 코드 하이라이트 디스플레이

다음은 제가 개발하는 과정입니다.우선, 저의 tinyMCE 버전은 Version: 3.2.7(2009-09-22)입니다.다운로드 주소https://www.jb51.net/codes/17198.html tinyMCE 코드 삽입, tinyMCE의 tinyMCE를 호출해야 합니다.execCommand('mceInsertContent',false,value); 방법그중의 매개 변수는 변경할 필요가 없다.value는 바로 네가 삽입해야 할 내용이다. 예를 들어 내가 함수를 썼을 때
 
function InsertHTML(value)
{
tinyMCE.execCommand('mceInsertContent',false,value);
}
뒤에 이 예에 대해 다운로드를 제공합니다.예에서모두 세 개의 서류가 관련되어 있다.tinyMCE.html insertcode.php save.php 이 세 개의 파일.tinyMCE.html은 tinyMCE 텍스트 상자 페이지입니다.기본 코드는 다음과 같습니다
 
<script type="text/javascript" src="https://www.jb51.net/tinymce/tiny_mce.js"></script>
<script type="text/javascript">
tinyMCE.init({
// General options
convert_urls : false,
mode : "exact",
elements : "Article_Content",
//mode : "textareas",
theme : "advanced",
plugins : "safari,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,wordcount",
// 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>
<script type="text/javascript">
function InsertHTML(value)
{
tinyMCE.execCommand('mceInsertContent',false,value);
}
</script>
그 중에서 js 코드는 tinyMCE를 초기화하는 것이다.다운로드의 예에는 tinyMCE가 포함되어 있지 않습니다. 직접 다운로드해야 합니다.그리고 js 코드의 src를 변경하면 됩니다.
 
<input name="button" type="button" onclick="window.open('insertcode.php',' ','height=500, width=600, top=300, left=300, toolbar=no, menubar=no, scrollbars=no, resizable=no,location=no, status=no')" value=" " />
위의 코드는 insertcode를 여는 데 사용됩니다.php 파일의다음은 insertcode를 살펴보겠습니다.php 이 파일의 코드입니다.우선 js 코드입니다
 
<script language="javascript" src="http://www.gosoa.com.cn/js/jquery.js"></script>
<script language="javascript">
function insertcode()
{
var value = $('#postcontent').html();
var codetype = $('#codetype').val();
// window.opener.InsertHTML('<textarea rows="3" cols="50" name="code" class="'+codetype+'">'+value+'</textarea>');
window.opener.InsertHTML('<pre name="code" class="'+codetype+'">'+value+'</pre>');
window.close();
}
</script>
그 다음은 PHP와 html 코드입니다
 
<?php
error_reporting(0);
$content = $_POST['content'];
if(!empty($content))
{
    $codetype = $_POST['codetype'];
    echo '<div id="postcontent">';
    $content = htmlspecialchars($content);
    echo $content;
    echo '</div>
    <input type="hidden" name="codetype" id="codetype" value="'.$codetype.'" />
    <input type="button" name="Submit" value=" " onclick="insertcode()" style="border:1px solid #000; line-height:18px; width:60px;"/>';
}else
{
?>
<div style="margin:0 auto">
<form id="form1" name="form1" method="post" action="insertcode.php">
<label>
<select name="codetype" id="codetype">
    <option value='php'>php</option>
    <option value='js'>js</option>
    <option value='html'>html</option>
    <option value='c'>c</option>
    <option value='asp'>asp</option>
    <option value='xml'>xml</option>
    <option value='java'>java</option>
    <option value='java'>java</option>
    <option value='CSharp'>C#</option>
    <option value='sql'>SQL</option>
</select>
</label>
<label>
<textarea name="content" id="content" cols="30" rows="20" style="width:600px; height:200px; border:1px dashed #333"></textarea>
</label>
<p>
<label style="padding-left:50px;">
<input type="Submit" name="Submit" value=" " style="border:1px solid #000; line-height:18px; width:60px;"/>
</label>
</p>
<p>&nbsp;</p>
</form>
</div>
<?php
}    
?>
insertcode에서.php에서 insertcode () 함수는tinyMCE를 호출하는 데 사용됩니다.html 페이지의 insertHTMl() 함수와 코드를 tinyMCE에 삽입합니다.html 페이지.코드에서 우리는 왜'+value+'를 해야 합니까?페이지를 표시하기 때문에 Syntax Highlighter 플러그인을 사용하여 코드를 강조표시합니다.여기서 $content = htmlspecialchars ($content);우리는 코드 자체에 대해 htmlspecialchars 전의적인 조작을 진행했다.이렇게 하면 데이터베이스에 삽입된 코드는 안전할 것이다.OK, 우리 다시 save를 보러 가자.php, 이 페이지는 제출한 내용을 표시하는 데 사용됩니다.기본 코드는 다음과 같습니다
 
<?
$Article_Content = $_POST['Article_Content'];
function transcode($str)
{
if(empty($str))
{
return false;
}
$str = str_replace('"','"',$str);
$str = str_replace('','',$str);
$str = str_ireplace('&lt;BR&gt;',"n",$str);
$str = str_ireplace('<pre','<pre name="code" ',$str);
return $str;
}
echo transcode($Article_Content);
?>
<script class="javascript" src="/tinymce/lightcode/Scripts/shCore.js"></script>
<script class="javascript" src="/tinymce/lightcode/Scripts/shBrushCSharp.js"></script>
<script class="javascript" src="/tinymce/lightcode/Scripts/shBrushPhp.js"></script>
<script class="javascript" src="/tinymce/lightcode/Scripts/shBrushJScript.js"></script>
<script class="javascript" src="/tinymce/lightcode/Scripts/shBrushJava.js"></script>
<script class="javascript" src="/tinymce/lightcode/Scripts/shBrushVb.js"></script>
<script class="javascript" src="/tinymce/lightcode/Scripts/shBrushSql.js"></script>
<script class="javascript" src="/tinymce/lightcode/Scripts/shBrushXml.js"></script>
<script class="javascript" src="/tinymce/lightcode/Scripts/shBrushDelphi.js"></script>
<script class="javascript" src="/tinymce/lightcode/Scripts/shBrushPython.js"></script>
<script class="javascript" src="/tinymce/lightcode/Scripts/shBrushRuby.js"></script>
<script class="javascript" src="/tinymce/lightcode/Scripts/shBrushCss.js"></script>
<script class="javascript" src="/tinymce/lightcode/Scripts/shBrushCpp.js"></script>
<script class="javascript">
dp.SyntaxHighlighter.HighlightAll('code');
</script>
OK, 끝. ^_^~~~tinyMCE 플러그인 개발 플러그인 하이라이트 v1.0(html, php, sql, js 지원)

좋은 웹페이지 즐겨찾기