level 1
ejzhang
楼主
粘贴时:

提交后:

前端代码:
<form method="post" action="/ueditor/php/controller.php">
<script id="editor" name="editor" type="text/plain" style="width:800px;height:400px;"></script>
<input type="submit">
</form>
<script type="text/javascript">
var ue = UE.getEditor('editor', {
toolbars: [
......
],
focus: true,
wordCount: false,
elementPathEnabled: false,
autoHeightEnabled: false,
autoFloatEnabled: false,
allHtmlEnabled: true
});
</script>
后端代码:
echo $_POST['editor'];
2014年07月17日 09点07分
1

提交后:
前端代码:<form method="post" action="/ueditor/php/controller.php">
<script id="editor" name="editor" type="text/plain" style="width:800px;height:400px;"></script>
<input type="submit">
</form>
<script type="text/javascript">
var ue = UE.getEditor('editor', {
toolbars: [
......
],
focus: true,
wordCount: false,
elementPathEnabled: false,
autoHeightEnabled: false,
autoFloatEnabled: false,
allHtmlEnabled: true
});
</script>
后端代码:
echo $_POST['editor'];