百度编辑器ueditor ASP如何获取内容

<!--baidu editor-->
<script id="myEditor" name="myEditor" type="text/plain" style="width:100%;height:300px;">
<%=rs("nr")%>
</script>
<script type="text/javascript">
$(document).ready(function(){
var editor= UE.getEditor('myEditor');
});
</script>
<!--baidu editor end-->
以上是在线修改某一个内容的ASP代码,能正常读取,可是提交FORM的时候,
content=request("myEditor")
可是得到的content竟然是空的,为什么?
ASP如何到底如何获取这个内容啊?急,已经一个晚上没有解决了
另外用 content=request("myEditorValue")
也不起作用
已经试过N种方法了
真不知道问题出在哪里!!!!

<script id="myEditor" name="myEditor" type="text/plain" style="width:100%;height:300px;">

<textarea name="content" id="content"><% =request("content") %></textarea> '放编辑器的内容
<script type="text/javascript">
$(document).ready(function(){
var editor= UE.getEditor('myEditor');
document.getElementById("content") = editor; '赋值给textarea
});
</script>
温馨提示:答案为网友推荐,仅供参考
第1个回答  2014-08-23
<table width="94%" height="1357" border="0" align="center" cellpadding="0" cellspacing="1" bgcolor="#CCCCCC">
<form id="form1" name="form1" method="post" action="index1.asp">
<tr>
<th width="12%" height="400" align="right" valign="top" bgcolor="#FFFFFF" class="kuan01">项目分析</th>

改成
<form id="form1" name="form1" method="post" action="index1.asp">
<table width="94%" height="1357" border="0" align="center" cellpadding="0" cellspacing="1" bgcolor="#CCCCCC">
<tr>
<th width="12%" height="400" align="right" valign="top" bgcolor="#FFFFFF" class="kuan01">项目分析</th>

就可以了。