网站首页  软件下载  游戏下载  源码下载  词典软件  教程攻略

请输入您要查询的源码:

 

源码 sinaeditor新浪htmleditor在线编辑器整理后
图标
分类 源码下载-网页编辑器 网页编辑器
语言 简体中文
大小 185MB
软件类型 国产软件
发布时间
用户评分 3
备案号
官方网址
软件授权 免费软件
操作系统 windows平台
厂商
下载
介绍 editor.js中有这两行:
<iframe id='editor_body_area' name='editor_body_area' style='width: 550px; height: 300px; border-width: 0px; overflow-x: atuo; display: nones;' frameborder='0'></iframe>\
<textarea id='editor_body_textarea' name='editor_body' style='width: 548px; height: 302px; border-width: 0px; padding-top:8px; display: none;'></textarea>\
第一行是编辑器的设计模式页面 第二行是源码模式的页面
调用时et.save()函数可使两种模式下编辑器中的内容同步
EDiaryEditor.iframe.contentWindow.document.body.innerHTML可以获取设计模式下编辑器中的内容
$('editor_body_textarea').value可以获取源码模式下编辑器中的内容
能狗获取到编辑器中的内容 下面的工作就好办

举个例子:

<script language="javascript" type="text/javascript">
function LoadContent(ContentID){ //将隐藏表单内容载入编辑器 (ContentID为表单ID)
if (typeof(EDiaryEditor.iframe)=="object"){ //如果编辑器已经加载完成
EDiaryEditor.iframe.contentWindow.document.body.innerHTML=ContentID.value;
et.save();
}else{ //编辑器还未加载完成
setTimeout("LoadContent(content)",200); //继续循环执行
}
}

function SaveContent(ContentID){ //将编辑器内容载入隐藏表单中 (ContentID为表单ID)
et.save();
ContentID.value=EDiaryEditor.iframe.contentWindow.document.body.innerHTML;
}
</script>
<input type="hidden" name="content" id="content" value="这是隐藏表单的内容">
<input type="button" value="将表单内容载入编辑器" onClick="LoadContent(content);">
<input type="button" value="将编辑器内容载入表单" onClick="SaveContent(content);alert('表单内容为:'+content.value);">

如果是编辑文章 注意要在body里加onload
<body onload="LoadContent(content)"> 这样就可以自动把内容载入到编辑器中了
还有就是别忘了文章提交后把cookie清理掉
大体就这些内容 没什么技术含量 希望可以给新手些帮助(我也是新手^_^)
截图
随便看

 

网盟提供免费网站源码下载(asp源码,php源码,.net源码),源码动态,使用教程和源码评测;为站长推介有价值的源码,为开发者宣传源码作品。

 

Copyright © 2002-2024 cnnbu.com All Rights Reserved
更新时间:2025/4/6 10:41:17