JavaScript-如何获取tinyeditor编辑器里面的值呢

发布于 2016-12-28 15:51:55 字数 30 浏览 1227 评论 2

如何获取tinyeditor编辑器里面的值呢

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

晚风撩人 2017-09-16 01:52:31

看了代码 原来是这么回事

需要提交的时候 必须调用 编辑器变量 也就是 edit 方法的第一个参数, 的post方法来将值 塞到 你传入的那个 textarea 里面去 然后再取得里面的值...

<?php
// 加载对应的css/js文件
$this->stylesheet_link_tag(
"{$__requestdir__}static/themes/default/js",
DOCROOT . '/static/themes/default/js',array(
'tinyeditor/style'
)
);
$this->js_include_tag(
"{$__requestdir__}static/themes/default/js",
DOCROOT . '/static/themes/default/js',array(
'tinyeditor/core'
)
);
?>
<script type="text/javascript">
new TINY.editor.edit('editor_<?php echo $id; ?>',{
id:'<?php echo $id; ?>',
width: 584,
height: 175,
cssclass:'te',
controlclass:'tecontrol',
rowclass:'teheader',
dividerclass:'tedivider',
controls:['bold','italic','underline','strikethrough','|','subscript','superscript','|',
'orderedlist','unorderedlist','|','outdent','indent','|','leftalign',
'centeralign','rightalign','blockjustify','|','unformat','|','undo','redo','n',
'font','size','style','|','image','hr','link','unlink','|','cut','copy','paste','print'],
footer:true,
fonts:['Verdana','Arial','Georgia','Trebuchet MS'],
xhtml:true,
css: '#<?php echo $id; ?> {border:none; margin:0; padding:0; font:14px "Courier New",Verdana; border:0} #editor_<?php echo $id; ?> {cursor:text; margin:10px} ',
bodyid:'te_c<?php echo $id; ?>',
footerclass:'tefooter',
toggle:{text:'source',activetext:'wysiwyg',cssclass:'toggle'},
resize:{cssclass:'resize'}
});
window.get_<?php echo $id; ?>_content = function (){
editor_<?php echo $id; ?>.post();
return T$('<?php echo $id; ?>').value;
};
</script>

虐人心 2017-05-24 00:09:58

你创建编辑器的时候:
<textarea name="input" id="input" style="width:400px; height:200px"></textarea>
var instance = new TINY.editor.edit(....);
实例如:new TINY.editor.edit(editor,{
id:input,
width:584,
height:175,
在提交表单的时候或者表单验证通过之后需要调用:instance.pos t();
注意:instance.pos t(); 中“instance”汉译为实例的意思,也即上方名称“editor”,在表单验证时的调用则为:editor.pos t();
<s cript language="Javascript"><!--
function Check(){ //v2.0
editor.pos t();
..........................................
}//-->
</s cript>
这样就会取到最新更新的值。

材料来源:链接:如何获取tinyeditor编辑器里面的值呢?

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文