我想使用ExecCommand使用InsertHtml,因此它在mozilla中工作得很好但在chrome或safari中无法正常工作。所以有任何方法可以做到这一点,我想要两种方式来做,如切换
我想创建包含类的下拉列表,因此从下拉菜单中我想在所选部分中应用类,所以如果我更改下拉选项,则应删除旧类,并将新类应用于该区域。
editorDoc = editor.contentWindow.document;
function ToggleFontName(option){
var text = '<span class="+option.value+">'+editor.getSelection()+'</span>';
editorDoc.execCommand("insertHTML", false, text);
}