一个页面如何放多个百度编辑器 Ueditor 1.4.3?PHP如何获取Ueditor 的值?
问题1:一个页面如何放置多个Ueditor?
参考代码如下:
<form method="post" action="save.php">
<script type="text/plain" id="ueditorId_1" name="ueditorName_1" style="width: 400px;height:500px;">编辑器的默认值_1</script>
<script type="text/javascript">
UE.getEditor('ueditorId_1');
</script>
<script type="text/plain" id="ueditorId_2" name="ueditorName_2" style="width: 450px;height:550px;">编辑器的默认值_2</script>
<script type="text/javascript">
UE.getEditor('ueditorId_2');
</script></form>
这样,就会在页面中渲染2个Ueditor编辑器。
问题2:PHP如何获取Ueditor的值?
注意,上面的 ueditorName_1,ueditorName_2 即为表单的Name值,所以服务端PHP获取Ueditor编辑器的值变得很简单,参考代码如下:
$_POST["ueditorName_1"]; // 第一个编辑器的值
$_POST["ueditorName_2"]; // 第二个编辑器的值