你好ueditor编辑器用div你是怎么获取到值的呢?
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了你好ueditor编辑器用div你是怎么获取到值的呢?相关的知识,希望对你有一定的参考价值。
你好ueditor编辑器用div你是怎么获取到值的呢?
发布前台页面:
<div class="xiweidaxiao">
<script name="myContent" type="text/plain" id="myContent" cols="45" rows="5" style="width:95%; margin:0 auto; "></script>
<script id="editor" type="text/plain" name="myContent"></script>
<script type="text/javascript">
var editor = new UE.ui.Editor();
editor.render('myContent');
</script> </div>
发布后台:
protected void jiaodigfijoa_Click(object sender, EventArgs e)
try
XinWen g = new XinWen();
g.XinWenrXianid(Request["id"].ToString());
g.xinTltli = jiaobiaoti.Text;
g.xinLaiyuan = TextBox1.Text;
g.xinConTent = Request["myContent"].ToString();
这上面是正确的:,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,
下面是修改后台页面,修改前台和发布前台一样的代码,请问在修改怎么写代码:
protected void Page_Load(object sender, EventArgs e)
if (!IsPostBack)
if (Request["id"] != null)
XinWen f = new XinWen();
f.XinWenrXianid(Request["id"].ToString());
jiaobiaoti.Text = f.xinTltli;
TextBox1.Text = f.xinLaiyuan;
这里通过什么代码获取数据库里面的值 = f.xinConTent;
jQuery怎么获取到富文本ueditor编辑器里面的文字和图片内容
1、创建编辑器 UE.getEditor(‘editor‘, initialFrameWidth:"100%" //初始化选项 ) 精简版 UE.getEditor(‘editor‘) 2、删除编辑器 UE.getEditor(‘editor‘).destroy(); 3、设置焦点 UE.getEditor(‘editor‘).focus(); 4、获取编辑器内容 UE.getEditor(‘editor‘).getContent() 5、编辑器是否有内容 UE.getEditor(‘editor‘).hasContents() 6、获取编辑器内容纯文本格式 UE.getEditor(‘editor‘).getContentTxt() 7、获取带格式的纯文本 UE.getEditor(‘editor‘).getPlainTxt() 8、启用编辑器 UE.getEditor(‘editor‘).setEnabled(); 9、禁止编辑 UE.getEditor(‘editor‘).setDisabled(‘fullscreen‘); 10、获取整个html内容 UE.getEditor(‘editor‘).getAllHtml() 11、常用设置 imageUrl:UEDITOR_HOME_URL + "../yunserver/yunImageUp.php", //图片上传接口 imagePath:"http://", scrawlUrl:UEDITOR_HOME_URL + "../yunserver/yunScrawlUp.php",//涂鸦接口 scrawlPath:"http://", fileUrl:UEDITOR_HOME_URL + "../yunserver/yunFileUp.php",//文件上传接口 filePath:"http://", catcherUrl:UEDITOR_HOME_URL + "php/getRemoteImage.php",//获取远程图片接口 catcherPath:UEDITOR_HOME_URL + "php/", imageManagerUrl:UEDITOR_HOME_URL + "../yunserver/yunImgManage.php",//图片管理接口 imageManagerPath:"http://", snapscreenHost:‘ueditor.baidu.com‘, snapscreenServerUrl:UEDITOR_HOME_URL + "../yunserver/yunSnapImgUp.php",//截图接口 snapscreenPath:"http://", wordImageUrl:UEDITOR_HOME_URL + "../yunserver/yunImageUp.php",//word图片转存接口 wordImagePath:"http://", // getMovieUrl:UEDITOR_HOME_URL + "../yunserver/getMovie.php",//获取视频接口 lang:/^zh/.test(navigator.language || navigator.browserLanguage || navigator.userLanguage) ? ‘zh-cn‘ : ‘en‘, langPath:UEDITOR_HOME_URL + "lang/", webAppKey:"9HrmGf2ul4mlyK8ktO2Ziayd", initialFrameWidth:860, //初始化宽度 initialFrameHeight:420, //初始化高度 focus:true //是否焦点 ---------------------
参考地址:https://www.kancloud.cn/he_he/thinkphp5
以上是关于你好ueditor编辑器用div你是怎么获取到值的呢?的主要内容,如果未能解决你的问题,请参考以下文章
jQuery怎么获取到富文本ueditor编辑器里面的文字和图片内容