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

推荐订阅源

P
Proofpoint News Feed
T
The Blog of Author Tim Ferriss
aimingoo的专栏
aimingoo的专栏
M
MIT News - Artificial intelligence
N
Netflix TechBlog - Medium
Y
Y Combinator Blog
B
Blog RSS Feed
H
Help Net Security
Blog — PlanetScale
Blog — PlanetScale
Vercel News
Vercel News
Google DeepMind News
Google DeepMind News
Microsoft Security Blog
Microsoft Security Blog
G
Google Developers Blog
OSCHINA 社区最新新闻
OSCHINA 社区最新新闻
博客园 - 司徒正美
L
LangChain Blog
IT之家
IT之家
F
Fortinet All Blogs
V
V2EX
C
Check Point Blog
The Cloudflare Blog
博客园_首页
阮一峰的网络日志
阮一峰的网络日志
A
About on SuperTechFans

博客园 - 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)  评论()    收藏  举报