<HTML>
<헤드>
<TITLE>javaScript--execCommand指令集</TITLE>
<SCRIPT LANGUAGE="자바스크립트">
/*
* 该function执行copy指令
*/
document.execCommand("BackgroundImageCache", false, true);
함수 fn_doufucopy(){
편집.선택();
document.execCommand('복사');
}
/*
* 该기능执行paste指令
*/
함수 fn_doufupaste(){
tt.focus();
document.execCommand('붙여넣기');
}
/*
* 该기능사용来创建一个超链接
*/
함수 fn_creatlink() {
document.execCommand('CreateLink',true,'true');//弹출일个对话框输入URL
//document.execCommand('CreateLink',false,'http://www.51cto.com');
}
/*
* 该기능 사용 来将选中의 区块设为指定 背景color
*/
함수 fn_change_backcolor(){
document.execCommand('BackColor',true,'#FFbbDD');//true或falseduc可以
}
/*
* 该기능 사용 来将选中的区块设为指定的前景color, 改变选中区块的字体大小, 改变字体,字体变粗变斜
*/
함수 fn_change_forecolor(){
//정렬 전 색상
document.execCommand('ForeColor',false,'#BBDDCC');//true或falseduc可以
//정의된 색상
document.execCommand('FontSize',false,7); //true或falseduc可以
//자세한 문자
document.execCommand('FontName',false,'标楷体'); //true或falseduc可以
//자세한 내용
document.execCommand('굵게');
//变斜体
document.execCommand('기울임꼴');
}
http://www.devdao.com/
/*
* 该기능 사용이 来将选中적인 것은 아닙니다.
*/
함수 fn_change_selection(){
//将选中文字加下划线
document.execCommand('Underline');
//중요한 문자 상划粗线
document.execCommand('StrikeThrough');
//将选中文字变细
document.execCommand('SuperScript');
//将选中区块下划线取消掉
document.execCommand('Underline');
}
/*
* 该기능 사용이 来将选中으로 되어 있는 것은 동일하지 않습니다.
*/
함수 fn_format(){
//유유序列排列
document.execCommand('InsertOrderedList');
//实心无序列排列
document.execCommand('InsertUnorderedList');
//공심无序列排列
document.execCommand('들여쓰기');
}
/*
* 기능 사용 来将选中 区块剪下或是删除掉
*/
함수 fn_CutOrDel(){
//删除选中的区块
//document.execCommand('삭제');
//剪下选中区块
document.execCommand('잘라내기');
}
/*
* 기능을 사용하는 来将选中의 저장소는 큼
*/
함수 fn_InsObj(){
/*
******************************************
* 以下指令都是为选中的区块重设一个객체;
* 如没有特殊说明,第二个参数true 또는 false是一样的;
* 参数三表示为该객체의 ID;
* 可以사용은 javascript中通过其指定의 id来控它를 사용합니다
******************************************
*/
/*중복버튼(InsertButton과 InsertInputButtong一样, 只不前者是button,后者是input)*/
/*
document.execCommand('InsertButton',false,"aa"); //참=거짓=참
document.all.aa.value="风舞九천";
*/
//중요한 필드셋
/*
document.execCommand('InsertFieldSet',true,"aa");
document.all.aa.innerText="刀剑如梦";
*/
//插入一个수평정
//document.execCommand('InsertHorizontalRule',true,"aa");
//插入一个iframe
//document.execCommand('InsertIFrame',true,"aa");
//插入一个InsertImage,设为true时需要图picture,false时不需图文
//document.execCommand('InsertImage',false,"aa");
//插入一个체크박스
//document.execCommand('InsertInputCheckbox',true,"aa");
//파일 객체를 사용하는 방법
//document.execCommand('InsertInputFileUpload',false,"aa");
//插入一个숨겨진
/*
document.execCommand('InsertInputHidden',false,"aa");
경고(document.all.aa.id);
*/
//插入一个InputImage
/*
document.execCommand('InsertInputImage',false,"aa");
document.all.aa.src="F-a10.gif";*/
//插入一个PassWord
//document.execCommand('InsertInputPassword',true,"aa");
//插入一个라디오
//document.execCommand('InsertInputRadio',false,"aa");
//插入一个리셋
//document.execCommand('InsertInputReset',true,"aa");
//插入一个제출
//document.execCommand('InsertInputSubmit',false,"aa");
//插入一个입력 텍스트
//document.execCommand('InsertInputText',false,"aa");
//插入一个textarea
//document.execCommand('InsertTextArea',true,"aa");
//插入一个 선택 목록 상자
//document.execCommand('InsertSelectListbox',false,"aa");
//插入一个단일 선택
document.execCommand('InsertSelectDropdown',true,"aa");
//插入一个줄바꿈(硬回车??)
//document.execCommand('InsertParagraph');
//插入一个천막
/*document.execCommand('InsertMarquee',true,"aa");
document.all.aa.innerText="bbbbbb";*/
//사용중인 阴影부분
//document.execCommand('선택 취소');
//选中页면상에 있는 모든 자산
//document.execCommand('SelectAll');
}
/*
*该기능 사용 来将页면保存为一个文件
*/
함수 fn_save(){
//이제 个参数为欲保存의 문자 이름
document.execCommand('SaveAs','mycodes.txt');
//打印整个页면
//document.execCommand('PRint');
}
</SCRIPT>
</HEAD>
<본문>
<input id="edit" value="范例" NAME="edit"><br>
<button ID="Button1">복사</button> <button ID="Button2">
붙여넣기</버튼><br>
<textarea id="tt"rows="10" cols="50" NAME="tt"></textarea>
<시간>
<br>
浮沉聚散变化又再,但是总可卷土重来.<br>
天若有情天亦老,人间正道是沧桑.<br>
뚜怪我,太执着,却也等不到꽃开叶落.<br>
<br>
위 문자를 선택한 후 다음 버튼을 클릭하세요.<br>
<시간>
<input type="button" value="创建CreateLink" ID="Button3" NAME="Button3"><br>
<input type="button" value="改变文字背景color" ID="Button4" NAME="Button4"><br>
<input type="button" value="改变文字前景color" ID="Button5" NAME="Button5"><br>
<input type="button" value="给文字加线条" ID="Button6" NAME="Button6"><br>
<input type="button" value="改变文字的排列" ID="Button7" NAME="Button7"><br>
<input type="button" value="删除或剪下选中的分分" ID="Button8" NAME="Button8"><br>
<input type="button" value="插入Object" ID="Button9" NAME="Button9"><br>
<input type="button" value="保存或打印文件" ID="Button10" NAME="Button10"><br>
<input type="button" value="Refresh属性" onclick="document.execCommand('Refresh')" ID="Button11" NAME="Button11">
</body>
</HTML>
-