Javascript nicEdit字体大小和字体系列don';行不通

Javascript nicEdit字体大小和字体系列don';行不通,javascript,jquery,html,css,nicedit,Javascript,Jquery,Html,Css,Nicedit,我在我的网站上使用nicEdit作为文本编辑器。我包括: 除字体大小和字体系列外,所有按钮均可工作,所选文本不会更改为我选择的字体大小和字体系列。 怎么了?我可以看看你的代码(css和javascript)吗 检查字体系列在当前计算机的操作系统上是否兼容。 在某些情况下,字体系列在Windows 8中运行良好,但在Windows 7中不起作用 在CSS中,您可以尝试以下操作: .text { font-family:'Lucida Handwriting', 'Segoe Scr

我在我的网站上使用nicEdit作为文本编辑器。我包括:

除字体大小和字体系列外,所有按钮均可工作,所选文本不会更改为我选择的字体大小和字体系列。 怎么了?

我可以看看你的代码(css和javascript)吗

检查字体系列在当前计算机的操作系统上是否兼容。 在某些情况下,字体系列在Windows 8中运行良好,但在Windows 7中不起作用

在CSS中,您可以尝试以下操作:

.text {
        font-family:'Lucida Handwriting', 'Segoe Script', 'Monotype Corsiva';
        /* Where if the first font family is not available, the browser will use the second one, and if the second one is not also available, it will finally use the last one */
    }

发布你的代码。。在没有看到代码的情况下,我们如何知道错误是什么?