1 <input type=button value=剪切 onclick=document.execCommand('Cut')>
2
3 <input type=button value=拷贝 onclick=document.execCommand('Copy')>
4
5 <input type=button value=粘贴 onclick=document.execCommand('Paste')>
6
7 <input type=button value=撤消 onclick=document.execCommand('Undo')>
8
9 <input type=button value=重做 onclick=document.execCommand('Redo') id=btn2 name=btn2>
10
11 <input type=button value=删除 onclick=document.execCommand('Delete')>
12
13 <input type=button value=黑体 onclick=document.execCommand('Bold')>
14
15 <input type=button value=斜体 onclick=document.execCommand('Italic')>
16
17 <input type=button value=下划线 onclick=document.execCommand('Underline')>
18
19 <input type=button value=停止 onclick=document.execCommand('stop')>
20
21 <input type=button value=保存 onclick=document.execCommand('SaveAs')>
22
23 <input type=button value=另存为 onclick=document.execCommand('Saveas',false,'c:\\t.htm')>
24
25 <input type=button value=字体 onclick=document.execCommand('FontName',false,fn)>
26
27 <input type=button value=字体大小 onclick=document.execCommand('FontSize',false,fs)>
28
29 <input type=button value=刷新 onclick=document.execCommand('refresh',false,0)>
2D-Position 允许通过拖曳移动绝对定位的对象。
AbsolutePosition 设定元素的 position 属性为“absolute”(绝对)。
BackColor 设置或获取当前选中区的背景颜色。
BlockDirLTR 目前尚未支持。
BlockDirRTL 目前尚未支持。
Bold 切换当前选中区的粗体显示与否。
BrowseMode 目前尚未支持。
Copy 将当前选中区复制到剪贴板。
CreateBookmark 创建一个书签锚或获取当前选中区或插入点的书签锚的名称。
CreateLink 在当前选中区上插入超级链接,或显示一个对话框允许用户指定要为当前选中区插入的超级链接的 URL。
Cut 将当前选中区复制到剪贴板并删除之。
Delete 删除当前选中区。
DirLTR 目前尚未支持。
DirRTL 目前尚未支持。
EditMode 目前尚未支持。
FontName 设置或获取当前选中区的字体。
FontSize 设置或获取当前选中区的字体大小。
ForeColor 设置或获取当前选中区的前景(文本)颜色。
FormatBlock 设置当前块格式化标签。
Indent 增加选中文本的缩进。
InlineDirLTR 目前尚未支持。
InlineDirRTL 目前尚未支持。
InsertButton 用按钮控件覆盖当前选中区。
InsertFieldset 用方框覆盖当前选中区。
InsertHorizontalRule 用水平线覆盖当前选中区。
InsertIFrame 用内嵌框架覆盖当前选中区。
InsertImage 用图像覆盖当前选中区。
InsertInputButton 用按钮控件覆盖当前选中区。
InsertInputCheckbox 用复选框控件覆盖当前选中区。
InsertInputFileUpload 用文件上载控件覆盖当前选中区。
InsertInputHidden 插入隐藏控件覆盖当前选中区。
InsertInputImage 用图像控件覆盖当前选中区。
InsertInputPassword 用密码控件覆盖当前选中区。
InsertInputRadio 用单选钮控件覆盖当前选中区。
InsertInputReset 用重置控件覆盖当前选中区。
InsertInputSubmit 用提交控件覆盖当前选中区。
InsertInputText 用文本控件覆盖当前选中区。
InsertMarquee 用空字幕覆盖当前选中区。
InsertOrderedList 切换当前选中区是编号列表还是常规格式化块。
InsertParagraph 用换行覆盖当前选中区。
InsertSelectDropdown 用下拉框控件覆盖当前选中区。
InsertSelectListbox 用列表框控件覆盖当前选中区。
InsertTextArea 用多行文本输入控件覆盖当前选中区。
InsertUnorderedList 切换当前选中区是项目符号列表还是常规格式化块。
Italic 切换当前选中区斜体显示与否。
JustifyCenter 将当前选中区在所在格式化块置中。
JustifyFull 目前尚未支持。
JustifyLeft 将当前选中区所在格式化块左对齐。
JustifyNone 目前尚未支持。
JustifyRight 将当前选中区所在格式化块右对齐。
LiveResize 迫使 MSHTML 编辑器在缩放或移动过程中持续更新元素外观,而不是只在移动或缩放完成后更新。
MultipleSelection 允许当用户按住 Shift 或 Ctrl 键时一次选中多于一个站点可选元素。
Open 打开。
Outdent 减少选中区所在格式化块的缩进。
OverWrite 切换文本状态的插入和覆盖。
Paste 用剪贴板内容覆盖当前选中区。
PlayImage 目前尚未支持。
Print 打开打印对话框以便用户可以打印当前页。
Redo 重做。
Refresh 刷新当前文档。
RemoveFormat 从当前选中区中删除格式化标签。
RemoveParaFormat 目前尚未支持。
SaveAs 将当前 Web 页面保存为文件。
SelectAll 选中整个文档。
SizeToControl 目前尚未支持。
SizeToControlHeight 目前尚未支持。
SizeToControlWidth 目前尚未支持。
Stop 停止。
StopImage 目前尚未支持。
StrikeThrough 目前尚未支持。
Subscript 目前尚未支持。
Superscript 目前尚未支持。
UnBookmark 从当前选中区中删除全部书签。
Underline 切换当前选中区的下划线显示与否。
Undo 撤消。
Unlink 从当前选中区中删除全部超级链接。
Unselect 清除当前选中区的选中状态。
1 <HTML>
2
3 <HEAD>
4
5 <TITLE>JavaScript--execCommand指令集</TITLE>
6
7 <SCRIPT LANGUAGE="javascript">
8
9 <!--
10
11
12
13 /*
14
15 *该function执行copy指令
16
17 */
18
19 function fn_doufucopy(){
20
21 edit.select();
22
23 document.execCommand('Copy');
24
25 }
26
27 /*
28
29 *该function执行paste指令
30
31 */
32
33 function fn_doufupaste() {
34
35 tt.focus();
36
37 document.execCommand('paste');
38
39 }
40
41 /*
42
43 *该function用来创建一个超链接
44
45 */
46
47 function fn_creatlink()
48
49 {
50
51 document.execCommand('CreateLink',true,'true');//弹出一个对话框输入URL
52
53 //document.execCommand('CreateLink',false,'http://www.51js.com');
54
55 }
56
57 /*
58
59 *该function用来将选中的区块设为指定的背景色
60
61 */
62
63 function fn_change_backcolor()
64
65 {
66
67 document.execCommand('BackColor',true,'#FFbbDD');//true或false都可以
68
69 }
70
71 /*
72
73 *该function用来将选中的区块设为指定的前景色,改变选中区块的字体大小,改变字体,字体变粗变斜
74
75 */
76
77 function fn_change_forecolor()
78
79 {
80
81 //指定前景色
82
83 document.execCommand('ForeColor',false,'#BBDDCC');//true或false都可以
84
85 //指定背景色
86
87 document.execCommand('FontSize',false,7); //true或false都可以
88
89 //字体必须是系统支持的字体
90
91 document.execCommand('FontName',false,'标楷体'); //true或false都可以
92
93 //字体变粗
94
95 document.execCommand('Bold');
96
97 //变斜体
98
99 document.execCommand('Italic');
100
101 }
102
103 /*
104
105 *该function用来将选中的区块加上不同的线条
106
107 */
108
109 function fn_change_selection()
110
111 {
112
113 //将选中的文字加下划线
114
115 document.execCommand('Underline');
116
117 //在选中的文字上划粗线
118
119 document.execCommand('StrikeThrough');
120
121 //将选中的部分文字变细
122
123 document.execCommand('SuperScript');
124
125 //将选中区块的下划线取消掉
126
127 document.execCommand('Underline');
128
129 }
130
131 /*
132
133 *该function用来将选中的区块排成不同的格式
134
135 */
136
137 function fn_format()
138
139 {
140
141 //有序列排列
142
143 document.execCommand('InsertOrderedList');
144
145 //实心无序列排列
146
147 document.execCommand('InsertUnorderedList');
148
149 //空心无序列排列
150
151 document.execCommand('Indent');
152
153 }
154
155 /*
156
157 *该function用来将选中的区块剪下或是删除掉
158
159 */
160
161 function fn_CutOrDel()
162
163 {
164
165 //删除选中的区块
166
167 //document.execCommand('Delete');
168
169 //剪下选中的区块
170
171 document.execCommand('Cut');
172
173 }
174
175 /*
176
177 *该function用来将选中的区块重设为一个相应的物件
178
179 */
180
181 function fn_InsObj()
182
183 {
184
185 /*
186
187 ******************************************
188
189 * 以下指令都是为选中的区块重设一个object;
190
191 * 如没有特殊说明,第二个参数true或false是一样的;
192
193 * 参数三表示为该object的id;
194
195 * 可以用在javascript中通过其指定的id来控制它
196
197 ******************************************
198
199 */
200
201 /*重设为一个button(InsertButton和InsertInputButtong一样,
202
203 只不前者是button,后者是input)*/
204
205 /*document.execCommand('InsertButton',false,"aa"); //true或false无效
206
207 document.all.aa.value="风舞九天";*/
208
209 //重设为一个fieldset
210
211 /*document.execCommand('InsertFieldSet',true,"aa");
212
213 document.all.aa.innerText="刀剑如梦";*/
214
215 //插入一个水平线
216
217 //document.execCommand('InsertHorizontalRule',true,"aa");
218
219 //插入一个iframe
220
221 //document.execCommand('InsertIFrame',true,"aa");
222
223 //插入一个InsertImage,设为true时需要图片,false时不需图片
224
225 //document.execCommand('InsertImage',false,"aa");
226
227 //插入一个checkbox
228
229 //document.execCommand('InsertInputCheckbox',true,"aa");
230
231 //插入一个file类型的object
232
233 //document.execCommand('InsertInputFileUpload',false,"aa");
234
235 //插入一个hidden
236
237 /*document.execCommand('InsertInputHidden',false,"aa");
238
239 alert(document.all.aa.id);*/
240
241 //插入一个InputImage
242
243 /*document.execCommand('InsertInputImage',false,"aa");
244
245 document.all.aa.src="F-a10.gif";*/
246
247 //插入一个Password
248
249 //document.execCommand('InsertInputPassword',true,"aa");
250
251 //插入一个Radio
252
253 //document.execCommand('InsertInputRadio',false,"aa");
254
255 //插入一个Reset
256
257 //document.execCommand('InsertInputReset',true,"aa");
258
259 //插入一个Submit
260
261 //document.execCommand('InsertInputSubmit',false,"aa");
262
263 //插入一个input text
264
265 //document.execCommand('InsertInputText',false,"aa");
266
267 //插入一个textarea
268
269 //document.execCommand('InsertTextArea',true,"aa");
270
271 //插入一个 select list box
272
273 //document.execCommand('InsertSelectListbox',false,"aa");
274
275 //插入一个single select
276
277 document.execCommand('InsertSelectDropdown',true,"aa");
278
279 //插入一个line break(硬回车??)
280
281 //document.execCommand('InsertParagraph');
282
283 //插入一个marquee
284
285 /*document.execCommand('InsertMarquee',true,"aa");
286
287 document.all.aa.innerText="bbbbb";*/
288
289 //用于取消选中的阴影部分
290
291 //document.execCommand('Unselect');
292
293 //选中页面上的所有元素
294
295 //document.execCommand('SelectAll');
296
297 }
298
299 /*
300
301 *该function用来将页面保存为一个文件
302
303 */
304
305 function fn_save()
306
307 {
308
309 //第二个参数为欲保存的文件名
310
311 document.execCommand('SaveAs','mycodes.txt');
312
313 //打印整个页面
314
315 //document.execCommand('print');
316
317 }
318
319 -->
320
321 </SCRIPT>
322
323 </HEAD>
324
325 <body>
326
327 <input id="edit" value="范例" NAME="edit"><br>
328
329 <button onclick="fn_doufucopy()" ID="Button1">Copy</button> <button onclick="fn_doufupaste()" ID="Button2">
330
331 paste</button><br>
332
333 <textarea id="tt" rows="10" cols="50" NAME="tt"></textarea>
334
335 <hr>
336
337 <br>
338
339 浮沉聚散变化又再,但是总可卷土重来.<br>
340
341 天若有情天亦老,人间正道是沧桑.<br>
342
343 都怪我,太执着,却也等不到花开叶落.<br>
344
345 <br>
346
347 Please select above letters, then click following buttons:<br>
348
349 <hr>
350
351 <input type="button" value="创建CreateLink" onclick="fn_creatlink()" ID="Button3" NAME="Button3"><br>
352
353 <input type="button" value="改变文字背景色" onclick="fn_change_backcolor()" ID="Button4" NAME="Button4"><br>
354
355 <input type="button" value="改变文字前景色" onclick="fn_change_forecolor()" ID="Button5" NAME="Button5"><br>
356
357 <input type="button" value="给文字加线条" onclick="fn_change_selection()" ID="Button6" NAME="Button6"><br>
358
359 <input type="button" value="改变文字的排列" onclick="fn_format()" ID="Button7" NAME="Button7"><br>
360
361 <input type="button" value="删除或剪下选中的部分" onclick="fn_CutOrDel()" ID="Button8" NAME="Button8"><br>
362
363 <input type="button" value="插入Object" onclick="fn_InsObj()" ID="Button9" NAME="Button9"><br>
364
365 <input type="button" value="保存或打印文件" onclick="fn_save()" ID="Button10" NAME="Button10"><br>
366
367 <input type="button" value="测试Refresh属性" onclick="document.execCommand('Refresh')" ID="Button11"
368
369 NAME="Button11">
370
371 </body>
372
373 </HTML>
374
375 文章来源:http://www.cnblogs.com/Apollo/archive/2006/08/02/465520.html
1 普通的方式是激活一个<iframe>进入编辑状态,命令如下
2
3 IframeNamer.document.designMode="On"
4
5 字体--宋体、黑体、楷体等
6
7 execCommand("fontname","",字体)
8
9 字号--字号大小
10
11 execCommand("fontsize","",字号)
12
13 加重
14
15 execCommand("Bold")
16
17 斜体
18
19 execCommand("Italic")
20
21 下划线
22
23 execCommand("Underline")
24
25 删除线
26
27 execCommand("StrikeThrough")
28
29 上标
30
31 execCommand("SuperScript")
32
33 下标
34
35 execCommand("SubScript")
36
37 有序排列--数字序号
38
39 execCommand("InsertOrderedList")
40
41 无序排列--圆点序号
42
43 execCommand("InsertUnorderedList")
44
45 向前缩进
46
47 execCommand("Outdent")
48
49 向后缩进
50
51 execCommand("Indent")
52
53 居左
54
55 execCommand("JustifyLeft")
56
57 居右
58
59 execCommand("JustifyRight")
60
61 居中
62
63 execCommand("JustifyCenter")
64
65 剪切
66
67 execCommand("Cut")
68
69 拷贝
70
71 execCommand("Copy")
72
73 粘贴
74
75 execCommand("Paste")
76
77 覆盖
78
79 execCommand("Overwrite")
80
81 取消操作--IE5.0以后可以无限取消
82
83 execCommand("Undo")
84
85 重复操作
86
87 execCommand("Redo")
88
89 设置链接--若按以下写法,在IE5.0版本中会激活一个内建窗口,可以完成输入链接的功能,而且还可以选择MAILTO、FTP等各种链接类型,比较方便
90
91 execCommand("CreateLink")
92
93 在IE4.0中,没有内建链接输入窗口,所以就需要用以下方式嵌入链接
94
95 execCommand("CreateLink","",TURL)
96
97 插入图片--由于IE中嵌入的可编控件是针对本地资源的,所以其默认的图片资源来自本地,所以基于WEB内容的编辑最好自己做输入框,然后用如下命令实现。
98
99 execCommand("InsertImage","",ImgURL)
100
101 字体颜色
102
103 execCommand("ForeColor","",CColor)
104
文章来源:http://hi.baidu.com/lqj1112/blog/item/346a904522f8ce3c879473b9.html