我正在尝试为内容可编辑标签构建弹出式文本格式设置工具。
我正在获取显示格式按钮的弹出窗口。在执行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中加入粗体和斜体来检查它是否正常工作。