如何使用 AJAX Control Toolkit HTML 编辑器通过 javascript 获取/设置内容?
我正在使用 AJAX Control 工具包 HTML 编辑器,并希望有一个简单的问题。正如问题标题所说 - 如何通过 javascript 获取/设置 HTML 编辑器的内容?
我访问服务器端内容属性没有问题 - 但如何在客户端执行此操作?
非常感谢任何帮助!
I'm using the AJAX Control toolkit HTML editor and have what I hope is a simple question. As the question title says - how do you get/set the content of the HTML editor via javascript?
I have no problems accessing the server side content property - but how to do it client side?
Any help gratefully received !
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(3)
Html 编辑器是独特的 Ajax Control Toolkit 控件之一,因为它既不继承 AjaxControlToolkit.ExtenderControlBase(服务器端),也不继承 AjaxControlToolkit.BehaviorBase(客户端)。
所以你不能使用
$find
javascript方法来访问客户端上的行为实例,它继承了AjaxControlToolkit.ScriptControlBase
(服务器端)和Sys. UI.Control
(客户端)。要访问客户端上的控件实例,可以使用 DOM 元素本身的 control 属性,如下所示:
The Html Editor is one of the unique Ajax Control Toolkit controls, becuase it does not inherit
AjaxControlToolkit.ExtenderControlBase
(server side) nor inheritAjaxControlToolkit.BehaviorBase
(client side).So you can't use
$find
javascript method to get access to the behavior instance on the client, It inheritsAjaxControlToolkit.ScriptControlBase
(server side) andSys.UI.Control
(client side).To get access to control instance on the client, you use the control property on the DOM element it self as follows:
以上答案对我不起作用。
所以我必须深入研究 html 并得到以下工作解决方案。它已经工作了很多年,并且在许多框架/操作系统/浏览器更新/升级中幸存下来。
Above answers didn't work for me.
So I had to dig through html and got following working solution. its working for years now and survived many framework/OS/browsers update/upgrade.