zoukankan      html  css  js  c++  java
  • document.execCommand() 使用

    <input type=button value=剪切 onclick=document.execCommand('Cut')>
    <input type=button value=拷贝 onclick=document.execCommand('Copy')>
    <input type=button value=粘贴 onclick=document.execCommand('Paste')>
    <input type=button value=撤消 onclick=document.execCommand('Undo')>
    <input type=button value=重做 onclick=document.execCommand('Redo') id=button2 name=button2>
    <input>
    <input type=button value=删除 onclick=document.execCommand('Delete')>
    <input type=button value=黑体 onclick=document.execCommand('Bold')>
    <input type=button value=斜体 onclick=document.execCommand('Italic')>
    <input type=button value=下划线 onclick=document.execCommand('Underline')>
    <input type=button value=停止 onclick=document.execCommand('stop')>
    <input type=button value=保存 onclick=document.execCommand('SaveAs')>
    <input type=button value=另存为 onclick=document.execCommand('Saveas',false,'c:\\test.htm')>
    <input type=button value=字体 onclick=document.execCommand('FontName',false,fn)>
    <input type=button value=字体大小 onclick=document.execCommand('FontSize',false,fs)>
    <input type=button value=刷新 onclick=document.execCommand('refresh',false,0)>

  • 相关阅读:
    微信 ios端config配置失败 android端正常
    vscode离线安装插件
    win7中vscode会黑屏或者终端空白,无法输入
    vue中使用svg图片
    a.download下载文件 ---跨域问题
    background 背景图片 --css3
    box-shadow
    兄弟伪类
    canvas画时钟
    轮播图--使用原生js的轮播图
  • 原文地址:https://www.cnblogs.com/twh/p/1651542.html
Copyright © 2011-2022 走看看