tinymce默认字体为Verdana,想要修改为 其他字体,查了很多资料,终于实现了

tinymce.init({
            ... //各种基本配置,此处不做详细说明
            //设置默认字体
		    setup: function(editor) {
			    editor.on('init', function(ed) {
					console.log(ed);
					ed.target.editorCommands.execCommand("fontName", false, "微软雅黑");
				});                       
			},
        });

Logo

华为开发者空间,是为全球开发者打造的专属开发空间,汇聚了华为优质开发资源及工具,致力于让每一位开发者拥有一台云主机,基于华为根生态开发、创新。

更多推荐