热门排行
简介
从新浪提取的编辑器,大家可以测试下
调用:
<input type="hidden" name="content" id="content">
<iframe src="Edit/editor.htm?id=content&ReadCookie=0" _fcksavedurl=""Edit/editor.htm?id=content&ReadCookie=0"" _fcksavedurl=""Edit/editor.htm?id=content&ReadCookie=0"" _fcksavedurl=""Edit/editor.htm?id=content&ReadCookie=0"" frameBorder="0" marginHeight="0" marginWidth="0" scrolling="No" width="700" height="460"></iframe>
注意:id为调用参数(小写),即隐藏的内容表单项id, ReadCookie设置是否读取上次未提交的数据,1为开启,0为关闭(注意大小写)。
呵呵,看到有网友把新浪博客的在线编辑器给提取了出来,真是强悍。这个编辑器我看着蛮喜欢~
略感美中不足的是,他做的图片上传是ASP版,既然这样,偶就给扩展扩展,给加个PHP的支持。
这个编辑器的界面简洁大方,颇有几分office 2007的味道。功能也很够用,没有PHP支持实在可惜!这样,大家在考虑在线编辑器的时候,是不是又多了一个选择?不错吧,祝您使用愉快。
调用也蛮简单,有时候感觉FCK功能太过强大了,某些地方可能有拿牛刀杀蚊子之嫌。
[codes=php]
<?php
/**
* 新浪博客编辑器PHP版封装类调用方法
*
*/
header('Content-Type:text/html;Charset=utf-8;');
include_once('sinaEditor.class.php');
extract($_POST);
extract($_GET);
unset($_POST,$_GET);
$act=='subok' && die("提交的内容是:<br>".htmlspecialchars($gently_editor));
$editor=new sinaEditor('gently_editor');//实例化类
$editor->Value='<h2>这个是一个测试!</h2><br>
myBlog:<a href="//www.zendstudio.net/">//www.zendstudio.net/</a>';
$editor->BasePath='.';//路径
$editor->Height=500; //编辑器高度
$editor->Width=700; //编辑器宽度
$editor->AutoSave=false; //是否自动保存,以便意外的时候恢复数据
?>
<form name="form1" id="form1" method="post" action="index.php?act=subok">
<?
$editor->Create();
?>
<input type="submit" value="提交">
<input type="reset" value="重置">
</form>
[/codes]
调用:
<input type="hidden" name="content" id="content">
<iframe src="Edit/editor.htm?id=content&ReadCookie=0" _fcksavedurl=""Edit/editor.htm?id=content&ReadCookie=0"" _fcksavedurl=""Edit/editor.htm?id=content&ReadCookie=0"" _fcksavedurl=""Edit/editor.htm?id=content&ReadCookie=0"" frameBorder="0" marginHeight="0" marginWidth="0" scrolling="No" width="700" height="460"></iframe>
注意:id为调用参数(小写),即隐藏的内容表单项id, ReadCookie设置是否读取上次未提交的数据,1为开启,0为关闭(注意大小写)。
呵呵,看到有网友把新浪博客的在线编辑器给提取了出来,真是强悍。这个编辑器我看着蛮喜欢~
略感美中不足的是,他做的图片上传是ASP版,既然这样,偶就给扩展扩展,给加个PHP的支持。
这个编辑器的界面简洁大方,颇有几分office 2007的味道。功能也很够用,没有PHP支持实在可惜!这样,大家在考虑在线编辑器的时候,是不是又多了一个选择?不错吧,祝您使用愉快。
调用也蛮简单,有时候感觉FCK功能太过强大了,某些地方可能有拿牛刀杀蚊子之嫌。
[codes=php]
<?php
/**
* 新浪博客编辑器PHP版封装类调用方法
*
*/
header('Content-Type:text/html;Charset=utf-8;');
include_once('sinaEditor.class.php');
extract($_POST);
extract($_GET);
unset($_POST,$_GET);
$act=='subok' && die("提交的内容是:<br>".htmlspecialchars($gently_editor));
$editor=new sinaEditor('gently_editor');//实例化类
$editor->Value='<h2>这个是一个测试!</h2><br>
myBlog:<a href="//www.zendstudio.net/">//www.zendstudio.net/</a>';
$editor->BasePath='.';//路径
$editor->Height=500; //编辑器高度
$editor->Width=700; //编辑器宽度
$editor->AutoSave=false; //是否自动保存,以便意外的时候恢复数据
?>
<form name="form1" id="form1" method="post" action="index.php?act=subok">
<?
$editor->Create();
?>
<input type="submit" value="提交">
<input type="reset" value="重置">
</form>
[/codes]