内容可编辑div的文本格式

时间:2016-03-21 08:41:15

标签: jquery html css

我正在尝试为内容可编辑标签构建弹出式文本格式设置工具。

我正在获取显示格式按钮的弹出窗口。在执行document.execCommand(tags,false,null)时,我没有获得所需的格式。我猜格式化命令没有执行当前内容可编辑div的值。我已经加入了js fiddle

我的函数由exec命令声明:

function nitspopupeditor(key, edittag) { //Function to format editable items.
    if (edittag) {
        document.execCommand(edittag, false, null);
        $('key').focus();
    }
};

现在我只在HTML中加入粗体和斜体来检查它是否正常工作。

0 个答案:

没有答案