3.6.2.1 EWEBEDITOR 对象属性
属性名 |
说明 |
Version |
软件版本号,字符型,如"8.0" |
ReplaceByClassName |
替换类名,字符型,用于自动样式类名替换,默认值为"ewebeditor" <textarea class="ewebeditor"></textarea> class="ewebeditor" 的文本框会被自动替换为编辑器 |
ReplaceByClassEnabled |
是否启用自动样式类名替换。布尔型。默认值为true |
BasePath |
编辑器所在目录的基路径,字符型。默认程序会自动检测路径,当使用特殊方法调用,而无法自动取到时,您可以手工设置此路径。如: EWEBEDITOR.BasePath = "../ewebeditor/"; |
使用方法:
EWEBEDITOR.<属性名>
例:
<script type="text/javascript"> alert(EWEBEDITOR.Version); //显示软件版本 EWEBEDITOR.BasePath = "../ewebeditor/"; //设置基路径 EWEBEDITOR.ReplaceByClassName = "myclassname"; EWEBEDITOR.ReplaceByClassEnabled = false; </script> |