今天遇到1个比较奇异的问题,有1项目需要在同1个页面上展现两个ueditor编辑器,在展现时其实不任何问题,但当点击了“保存”按钮时就出错了,有其中1个ueditor在asp.net中没法获得编辑器的值,这时候代码是这样的:
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
|
//第1个ueditor
<script type= "text/plain"
id= "editorValue" ><asp:Literal ID= "ltlContent"
runat= "server" ></asp:Literal> </script> //第2个ueditor <script type= "text/plain"
id= "editorContact"
><asp:Literal ID= "ltlContact"
runat= "server" ></asp:Literal> </script> //实例化
<script type= "text/javascript" > var
ue = new
UE.ui.Editor({} ); var
ueContact = new
UE.ui.Editor({} ); ue.render(
'editorValue'
); ueContact.render(
'editorContact'
); </script>
|
结果就是editorContact这个编辑器的内容没法通过Request.Params["editorContact"] 去获得内容,但第1个ueditor却是正常的,为何?代码是1样的,只是名字不1样而已难道是一样的出身竟有不同的命运?
~~~~~
我尝试着改改id的名字问题仍然是没法获得编辑器的内容,最后我在第2个编辑器ueditor中加入1个属性这问题居然就解决了。:(
方式就是:
在第2个百度编辑器增加name属性
终究代码:
1
2
3
4
5
6
7
|
//第1个没有name属性的 <script type= "text/plain"
id= "editorValue" ><asp:Literal ID= "ltlContent"
runat= "server" ></asp:Literal> </script> //第2个有name属性的ueditor <script type= "text/plain"
id= "editorContact"
name= "editorContact" ><asp:Literal ID= "ltlContact"
runat= "server" ></asp:Literal> </script> |
居然在代码世界里也有这样的不公待遇,真是1头雾水啊~~~
----------------
原文链接:http://www.cnblogs.com/samlin/p/editor_without_name_attribute.html
@小小推行--->
同时您也能够查看做者最近的项目 8爪鱼招标网 大家多给意见哦 :)
下一篇 网站开发进阶(四十)知识总结