添加了插入FLASH还有多媒体的功能,修改了几个BUG
最重要的是修改了,编辑文章的时候不显示文章内容的BUG
用法相当简单,但是需要修改editfun.js这个文件!
<textarea name="content" style="display:none"></textarea>
<iframe ID="Editor" name="Editor" src="htmltool.htm?ID=content" frameBorder="0" marginHeight="0" marginWidth="0" scrolling="No" style="height:320px;width:100%"></iframe>
<input type="submit" value=" 提 交 " />
后台接收的时候,只要取content这个参数的内容就行了
比如php吧
$content=$_POST['content'];
126邮箱用的编辑器
最重要的是修改了,编辑文章的时候不显示文章内容的BUG
用法相当简单,但是需要修改editfun.js这个文件!
<textarea name="content" style="display:none"></textarea>
<iframe ID="Editor" name="Editor" src="htmltool.htm?ID=content" frameBorder="0" marginHeight="0" marginWidth="0" scrolling="No" style="height:320px;width:100%"></iframe>
<input type="submit" value=" 提 交 " />
后台接收的时候,只要取content这个参数的内容就行了
比如php吧
$content=$_POST['content'];
126邮箱用的编辑器