HTML DOM execCommand() 方法
定义和用法
execCommand()
方法为可编辑部分的选定部分执行指定的命令。
浏览器支持
表中的数字表示支持该方法的第一个浏览器版本。
方法 | |||||
---|---|---|---|---|---|
execCommand() | Yes | 9.0 | 41.0 | 20.0 | 29.0 |
注释: 这是一项实验性技术,在最终发布之前可能会有所改变。
语法
document.execCommand(command, showUI, value)
参数值
值 | 描述 |
---|---|
command | 指定要在选定节上执行的命令的名称。
合规的值有: "backColor" "bold" "createLink" "copy" "cut" "defaultParagraphSeparator" "delete" "fontName" "fontSize" "foreColor" "formatBlock" "forwardDelete" "insertHorizontalRule" "insertHTML" "insertImage" "insertLineBreak" "insertOrderedList" "insertParagraph" "insertText" "insertUnorderedList" "justifyCenter" "justifyFull" "justifyLeft" "justifyRight" "outdent" "paste" "redo" "selectAll" "strikethrough" "styleWithCss" "subscript" "superscript" "undo" "unlink" "useCSS" |
showUI | 布尔值,指定是否应显示 UI |
value | Some commands need a value to be completed |
技术细节
返回值: | 布尔值,如果不支持该命令,则为false,否则为true |
---|
相关页面
DOM Document designMode Property
DOM Element contentEditable Property
❮ Document 对象