document.execCommand()函数可用参数解析

隐藏在暗处的方法-execCommand() 

关键字: javascript
document 

document.execCommand()方法可用来执行很多我们无法实现的操作. 

execCommand方法是执行一个对当前文档,当前选择或者给出范围的命令。 

document.execCommand()方法处理Html数据时常用语法格式如下:
复制内容到剪贴板 
代码: 
document.execCommand(sCommand[,交互方式,
动态参数])
其中:sCommand为指令参数(如下例中的"2D-Position"),交互方式参数如果是true的话将显示对话框,如果为false的话,则不显示对话框(下例中的"false"即表示不显示对话框),动态参数一般为一可用值或属性值(如下例中的"true")。 

document.execCommand("2D-Position","false","true"); 

调用execCommand()可以实现浏览器菜单的很多功能.
如保存文件,打开新文件,撤消、重做操作...等等.
有了这个方法,就可以很容易的实现网页中的文本编辑器. 

如果灵活运用,可以很好的辅助我们完成各种项目. 

使用的例子如下: 

1、〖全选〗命令的实现 
[格式]:document.execCommand("selectAll") 
[说明]将选种网页中的全部内容! 
[举例]在<body></body>之间加入: 
<a
href="#"
onclick=document.execCommand("selectAll")>全选</a> 

2、〖打开〗命令的实现 
[格式]:document.execCommand("open") 
[说明]这跟VB等编程设计中的webbrowser控件中的命令有些相似,大家也可依此琢磨琢磨。 
[举例]在<body></body>之间加入: 
<a
href="#"
onclick=document.execCommand("open")>打开</a> 

3、〖另存为〗命令的实现 
[格式]:document.execCommand("saveAs") 
[说明]将该网页保存到本地盘的其它目录! 
[举例]在<body></body>之间加入: 
<a
href="#"
onclick=document.execCommand("saveAs")>另存为</a> 

4、〖打印〗命令的实现 
[格式]:document.execCommand("print") 
[说明]当然,你必须装了打印机! 
[举例]在<body></body>之间加入: 
<a
href="#"
onclick=document.execCommand("print")>打印</a> 

Js代码
下面列出的是指令参数及意义 

//相当于单击文件中的打开按钮   
document.execCommand("Open");   
  
//将当前页面另存为   
document.execCommand("SaveAs");   
  
//剪贴选中的文字到剪贴板;   
document.execCommand("Cut","false",null);   
  
//删除选中的文字;   
document.execCommand("Delete","false",null);    
  
//改变选中区域的字体;   
document.execCommand("FontName","false",sFontName);    
  
//改变选中区域的字体大小;   
document.execCommand("FontSize","false",sSize|iSize);    
  
//设置前景颜色;   
document.execCommand("ForeColor","false",sColor);   
  
//使绝对定位的对象可直接拖动;    
document.execCommand("2D-Position","false","true");   
  
//使对象定位变成绝对定位;    
document.execCommand("AbsolutePosition","false","true");   
  
//设置背景颜色;   
document.execCommand("BackColor","false",sColor);   
  
//使选中区域的文字加粗;   
document.execCommand("Bold","false",null);   
  
//复制选中的文字到剪贴板;   
document.execCommand("Copy","false",null);   
  
//设置指定锚点为书签;   
document.execCommand("CreateBookmark","false",sAnchorName);   
  
//将选中文本变成超连接,若第二个参数为true,会出现参数设置对话框;   
document.execCommand("CreateLink","false",sLinkURL);   
  
//设置当前块的标签名;   
document.execCommand("FormatBlock","false",sTagName);  

//相当于单击文件中的打开按钮 
document.execCommand("Open"); 

//将当前页面另存为 
document.execCommand("SaveAs"); 

//剪贴选中的文字到剪贴板; 
document.execCommand("Cut","false",null); 

//删除选中的文字; 
document.execCommand("Delete","false",null); 

//改变选中区域的字体; 
document.execCommand("FontName","false",sFontName); 

//改变选中区域的字体大小; 
document.execCommand("FontSize","false",sSize|iSize); 

//设置前景颜色; 
document.execCommand("ForeColor","false",sColor); 

//使绝对定位的对象可直接拖动; 
document.execCommand("2D-Position","false","true"); 

//使对象定位变成绝对定位; 
document.execCommand("AbsolutePosition","false","true"); 

//设置背景颜色; 
document.execCommand("BackColor","false",sColor); 

//使选中区域的文字加粗; 
document.execCommand("Bold","false",null); 

//复制选中的文字到剪贴板; 
document.execCommand("Copy","false",null); 

//设置指定锚点为书签; 
document.execCommand("CreateBookmark","false",sAnchorName); 

//将选中文本变成超连接,若第二个参数为true,会出现参数设置对话框; 
document.execCommand("CreateLink","false",sLinkURL); 

//设置当前块的标签名; 
document.execCommand("FormatBlock","false",sTagName); 

另外:document.execCommand()还有很多的其它属性.以下是我搜集整理的.可能还漏了很多,希望大家多多补充! 

2D-Position
允许通过拖曳移动绝对定位的对象。 

AbsolutePosition 设定元素的 position
属性为“absolute”(绝对)。 

BackColor
设置或获取当前选中区的背景颜色。 

Bold
切换当前选中区的粗体显示与否。 

Copy
将当前选中区复制到剪贴板。 

CreateBookmark
创建一个书签锚或获取当前选中区或插入点的书签锚的名称。 

CreateLink
在当前选中区上插入超级链接,或显示一个对话框允许用户指定要为当前选中区插入的超级链接的 URL。 

Cut
将当前选中区复制到剪贴板并删除之。 

Delete
删除当前选中区。 

FontName
设置或获取当前选中区的字体。 

FontSize
设置或获取当前选中区的字体大小。 

ForeColor
设置或获取当前选中区的前景(文本)颜色。 

FormatBlock
设置当前块格式化标签。 

Indent
增加选中文本的缩进。 

InsertButton
用按钮控件覆盖当前选中区。 

InsertFieldset
用方框覆盖当前选中区。 

InsertHorizontalRule
用水平线覆盖当前选中区。 

InsertIFrame
用内嵌框架覆盖当前选中区。 

InsertImage
用图像覆盖当前选中区。 

InsertInputButton
用按钮控件覆盖当前选中区。 

InsertInputCheckbox
用复选框控件覆盖当前选中区。 

InsertInputFileUpload
用文件上载控件覆盖当前选中区。 

InsertInputHidden
插入隐藏控件覆盖当前选中区。 

InsertInputImage
用图像控件覆盖当前选中区。 

InsertInputPassword
用密码控件覆盖当前选中区。 

InsertInputRadio
用单选钮控件覆盖当前选中区。 

InsertInputReset
用重置控件覆盖当前选中区。 

InsertInputSubmit
用提交控件覆盖当前选中区。 

InsertInputText
用文本控件覆盖当前选中区。 

InsertMarquee
用空字幕覆盖当前选中区。 

InsertOrderedList
切换当前选中区是编号列表还是常规格式化块。 

InsertParagraph
用换行覆盖当前选中区。 

InsertSelectDropdown
用下拉框控件覆盖当前选中区。 

InsertSelectListbox
用列表框控件覆盖当前选中区。 

InsertTextArea
用多行文本输入控件覆盖当前选中区。 

InsertUnorderedList
切换当前选中区是项目符号列表还是常规格式化块。 

Italic
切换当前选中区斜体显示与否。 

JustifyCenter
将当前选中区在所在格式化块置中。 

JustifyLeft
将当前选中区所在格式化块左对齐。 

JustifyRight
将当前选中区所在格式化块右对齐。 

LiveResize 迫使 MSHTML
编辑器在缩放或移动过程中持续更新元素外观,而不是只在移动或缩放完成后更新。 

MultipleSelection
允许当用户按住 Shift 或 Ctrl 键时一次选中多于一个站点可选元素。 

Open
打开一个文档。 

Outdent
减少选中区所在格式化块的缩进。 

OverWrite
切换文本状态的插入和覆盖。 

Paste
用剪贴板内容覆盖当前选中区。 

Print
打开打印对话框以便用户可以打印当前页。 

Redo
撤消操作,相当于Ctrl+Z。 

Undo
重做。 

Refresh
刷新当前文档。 

RemoveFormat
从当前选中区中删除格式化标签。 

RemoveParaFormat
目前尚未支持。 

SaveAs 将当前 Web
页面保存为文件。 

SelectAll
选中整个文档。 

UnBookmark
从当前选中区中删除全部书签。 

Underline
切换当前选中区的下划线显示与否。 

Unlink
从当前选中区中删除全部超级链接。 

Unselect
清除当前选中区的选中状态。 

------------------------------------------------------------------------------------ 
Javascript的世界真是奇妙.
有时,只是一次不经意的google,都会发现一些以前没见过,或忽略的语法. 当用起来的时候,才发现它的威力.
不知还有多少正隐藏在暗处的方法,等着你我去发现? 
------------------------------------------------------------------------------------ 
(部分内容来源于百度搜索)  

document.execCommand()函数可用参数解析 

<html> 
<head> 
<title>javascript--execcommand指令集</title> 
<script
type="text/javascript"> 

<!-- 
/* 
*该function执行copy指令 
*/ 
function
fn_doufucopy(){ 
edit.select(); 
document.execCommand(‘Copy‘); 


/* 
*该function执行paste指令 
*/ 

function
fn_doufupaste()

tt.focus(); 
document.execCommand(‘paste‘); 


/* 
*该function用来创建一个超链接 
*/ 

function
fn_creatlink() 

document.execCommand(‘CreateLink‘,true,‘true‘);//弹出一个对话框输入URL 
//document.execCommand(‘CreateLink‘,false,‘http://bbs.tc800.com‘); 

/* 
*该function用来将选中的区块设为指定的背景色 
*/ 

function
fn_change_backcolor() 

document.execCommand(‘BackColor‘,true,‘#FFbbDD‘);//true或false都可以 


/* 
*该function用来将选中的区块设为指定的前景色,改变选中区块的字体大小,改变字体,字体变粗变斜 
*/ 

function
fn_change_forecolor() 

//指定前景色 
document.execCommand(‘ForeColor‘,false,‘#BBDDCC‘);//true或false都可以 

//指定背景色 
document.execCommand(‘FontSize‘,false,7);  
//true或false都可以 

//字体必须是系统支持的字体 
document.execCommand(‘FontName‘,false,‘标楷体‘);  
//true或false都可以 

//字体变粗 
document.execCommand(‘Bold‘); 

//变斜体 
document.execCommand(‘Italic‘); 


/* 
*该function用来将选中的区块加上不同的线条 
*/ 

function
fn_change_selection() 

//将选中的文字加下划线 
document.execCommand(‘Underline‘); 

//在选中的文字上划粗线 
document.execCommand(‘StrikeThrough‘); 

//将选中的部分文字变细 
document.execCommand(‘SuperScript‘); 

//将选中区块的下划线取消掉 
document.execCommand(‘Underline‘); 


/* 
*该function用来将选中的区块排成不同的格式 
*/ 

function
fn_format() 

//有序列排列 
document.execCommand(‘InsertOrderedList‘); 
//实心无序列排列 
document.execCommand(‘InsertUnorderedList‘); 
//空心无序列排列 
document.execCommand(‘Indent‘); 


/* 
*该function用来将选中的区块剪下或是删除掉 
*/ 

function
fn_CutOrDel() 

//删除选中的区块 
//document.execCommand(‘Delete‘); 
//剪下选中的区块 
document.execCommand(‘Cut‘); 


/* 
*该function用来将选中的区块重设为一个相应的物件 
*/ 

document.execCommand()的应用实例 
document.execCommand()的应用实例 

本文来自:
盛世唐朝社区(http://bbs.tc800.com) 
详细出处:http://bbs.tc800.com/thread-23658-1-1.html 

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

本文来自:
盛世唐朝社区(http://bbs.tc800.com) 
详细出处:http://bbs.tc800.com/thread-23658-1-1.html 
本文来自CSDN博客,转载请标明出处:http://blog.csdn.net/wwwchenbing/archive/2008/11/28/3402963.aspx

document.execCommand()函数可用参数解析,布布扣,bubuko.com

时间: 2024-10-21 03:35:27

document.execCommand()函数可用参数解析的相关文章

CImageList类Create函数参数解析

前面提到了CImageList类的Create(...)函数,虽然MSDN上已经有所解释,但仍有网友问到参数的具体含义,下面就我的理解,对参数进行一次轻量级的剖析 函数原型(其他重载函数请参看msdn):   BOOL Create( int cx, int cy, UINT nFlags, int nInitial, int nGrow ); cx ,cy: 图片的实际像素宽与高,没有问题 nFlags:创建图像列表的类型,包括4/8/16/24/32/位色, nInitial : 创建Ima

cmake函数参数解析

最近在迁移公司的make系统到cmake上,发现cmake的function参数很奇怪.例如,如果我们向一个function传递list作为参数,在function中,形参会变成如下状况: set(SRC) list(APPEND SRC a.cpp b.cpp) list(APPEND SRC c.cpp d.cpp) function(tst_arguments src_list) message("src_list = "${src_list}) endfunction() me

[转]BX9054: 各浏览器对 document.execCommand 方法的首参数可选值范围存在差异

作者:钱宝坤 标准参考 无. 问题描述 execCommand 方法通常用于控制可编辑的 IFRAME 内容,制作富文本编辑器. 但他现在为止还是非标准的,方法的首参数 Commmands 的可选值由各个浏览器厂商制定,支持程度并不统一. 造成的影响 使用仅有某个浏览器支持的 Commmands 参数会造成其他浏览器运行时脚本出错,从而影响其他浏览器内正常脚本继续执行. 受影响的浏览器 所有浏览器   问题分析 document.execCommand 方法提供了对浏览器内置命令调用的接口,他暂

QEMU 2: 参数解析

一.使用gdb分析QEMU代码 使用gdb不仅可以很好地调试代码,也可以利用它来动态地分析代码.使用gdb调试QEMU需要做一些准备工作: 1, 编译QEMU时需要在执行configure脚本时的参数中加入–enable-debug. 2, 从QEMU官方网站上下载一个精简的镜像--linux-0.2.img.linux-0.2.img只有8MB大小,启动后包含一些常用的shell命令,用于QEMU的测试. $wget http://wiki.qemu.org/download/linux-0.

四.jQuery源码解析之jQuery.fn.init()的参数解析

从return new jQuery.fn.init( selector, context, rootjQuery )中可以看出 参数selector和context是来自我们在调用jQuery方法时传过来的.那么selector和context都有哪些可能. 对于表格中的4~9行中的可能做具体分析. 如果selector是字符串,则首先检测是html代码还是#id. 126行的if语句:以"<"开头,以">"结尾,且长度>=3.则假设额这个是HT

Javascript中document.execCommand()的用法

document.execCommand()方法处理Html数据时常用语法格式如下: document.execCommand(sCommand[,交互方式, 动态参数]) 其中:sCommand为指令参数(如下例中的”2D-Position”),交互方式参数如果是true的话将显示对话框,如果为false的话,则不显示对话框(下例中的”false”即表示不显示对话框),动态参数一般为一可用值或属性值(如下例中的”true”). document.execCommand(”2D-Position

Javascript中document.execCommand()的用法 ( 实现浏览器菜单的很多功能 )

document.execCommand()方法处理Html数据时常用语法格式如下:document.execCommand(sCommand[,交互方式, 动态参数]) 其中:sCommand为指令参数(如下例中的"2D-Position"),交互方式参数如果是true的话将显示对话框,如果为false的话,则不显示对话框(下例中的"false"即表示不显示对话框),动态参数一般为一可用值或属性值(如下例中的"true"). document.

argparse - 命令行选项与参数解析

argparse模块作为optparse的一个替代被添加到Python2.7.argparse的实现支持一些不易于添加到optparse以及要求向后不兼容API变化的特性,因此以一个新模块添加到标准库. 与optparse相比较 argparse的API类似于optparse,甚至在很多情况下通过更新所使用的类名和方法名,使用argparse作为一个简单的替代.然而,有些地方在添加新特性时不能保持直接兼容性. 你必须视情况决定是否升级已有的程序.如果你已编写了额外的代码以弥补optparse的局

【JavaScript】Javascript中document.execCommand()的用法

Javascript中document.execCommand()的用法 合并转载: 转载出处1 转载出处2 document.execCommand()方法处理Html数据时常用语法格式如下:document.execCommand(sCommand[,交互方式, 动态参数]) 其中:sCommand为指令参数(如下例中的"2D-Position"),交互方式参数如果是true的话将显示对话框,如果为false的话,则不显示对话框(下例中的"false"即表示不显