我想修改ckeditor的horizontalrule插件:
...
exec: function( editor ) {
var hr = editor.document.createElement( 'hr' );
editor.insertElement( hr );
},
allowedContent: 'hr',
requiredContent: 'hr'
};
...
此插件生成:
<hr />
但我想得到sg。喜欢:
<hr style="color:#FFF; height:2px;" />
任何人都可以帮我解决这个问题吗?
答案 0 :(得分:1)
hr.style.color = "#FFF";
hr.style.height = "2px";
您几乎可以随时对hr
变量执行此操作。