惯性聚合 高效追踪和阅读你感兴趣的博客、新闻、科技资讯
阅读原文 在惯性聚合中打开

推荐订阅源

让小产品的独立变现更简单 - ezindie.com
让小产品的独立变现更简单 - ezindie.com
云风的 BLOG
云风的 BLOG
Microsoft Security Blog
Microsoft Security Blog
WordPress大学
WordPress大学
GbyAI
GbyAI
C
Check Point Blog
M
MIT News - Artificial intelligence
T
The Blog of Author Tim Ferriss
Jina AI
Jina AI
博客园 - 【当耐特】
U
Unit 42
月光博客
月光博客
腾讯CDC
Y
Y Combinator Blog
小众软件
小众软件
博客园_首页
Last Week in AI
Last Week in AI
酷 壳 – CoolShell
酷 壳 – CoolShell
The GitHub Blog
The GitHub Blog
博客园 - 聂微东
freeCodeCamp Programming Tutorials: Python, JavaScript, Git & More
MongoDB | Blog
MongoDB | Blog
博客园 - Franky
T
Tailwind CSS Blog

博客园 - DinoSaur

监测磁盘文件是否被修改程序 这两天随便写了个基类库 C#使用Jmail组件发送邮件 解决需求工程中的基本问题 如何编写用户操作手册 什么是软件需求 string.Equals(string)和==的原理 DataGrid格式 微软程序员测试题 C#中调用Windows API的要点 网站间共享数据的WebService 使用ASP.NET实现饼图 如何将一个目录里面的所有文件复制到目标目录里面。 前台对象的事件一览 剖析ASP.NET下部构造 VS.NET下web项目源代码管理 DotNet向数据库中添加图片 DataGrid应用样式文件定义动态样式 C#编码标准--编码习惯
常用的DOCUMENT.EXECCOMMAND
DinoSaur · 2004-11-25 · via 博客园 - DinoSaur

<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)>

posted on 2004-11-25 21:31  DinoSaur  阅读(547)  评论()    收藏  举报