我想在 Telerik 的 Radeditor 的 body 元素中设置内联样式,但我想在没有官方解决方案 radeditor css 文件的情况下执行此操作。
例如,我希望编辑器的主体在编辑器初始化时具有内联字体系列。
为了我的目的,它应该是内联样式。我使用 radeditor 作为电子邮件编辑器,所以正文将通过清理提供程序。
任何来自客户端或代码隐藏 C# 的解决方案都会有所帮助。
提前致谢。
下面是一个关于如何在客户端获取内容区域引用的例子:
<telerik:RadEditor
ID="RadEditor1"
OnClientLoad="OnClientLoad"
runat="server">
</telerik:RadEditor>
...
<script type="text/javascript">
function OnClientLoad(editor, args) {
var style = editor.get_contentArea().style;
style.backgroundImage = "none";
style.backgroundColor = "black";
style.color = "red";
style.fontFamily = "Arial";
style.fontSize = 15 + "px";
}
</script>
我是一名优秀的程序员,十分优秀!