<HTML>
<頭>
<TITLE>javaScript--execCommand命令集</TITLE>
<スクリプト言語="Javascript">
/*
* この関数実行コピー命令
*/
document.execCommand("BackgroundImageCache", false, true);
関数 fn_doufucopy(){
edit.select();
document.execCommand('コピー');
}
/*
* この関数はペースト命令を実行します
*/
関数 fn_doufupaste(){
tt.focus();
document.execCommand('貼り付け');
}
/*
* この関数は超接続を構築するために使用されます
*/
関数 fn_creatlink() {
document.execCommand('CreateLink',true,'true');//弹出一个对话框输入URL
//document.execCommand('CreateLink',false,'http://www.51cto.com');
}
/*
* この機能は、選択中のエリアブロックを指定された背景色に設定するために使用されます。
*/
関数 fn_change_backcolor(){
document.execCommand('BackColor',true,'#FFbbDD');//true または false都可
}
/*
* この機能は、選択した中区ブロックを指定した前景に設定したり、選択した中区ブロックの文字サイズを変更したり、文字体を変更したり、文字体の粗さを変更したりするために使用します。
*/
関数 fn_change_forecolor(){
// 前の景色を指定
document.execCommand('ForeColor',false,'#BBDDCC');//true または false都可
//背景色指定
document.execCommand('フォントサイズ',false,7); //trueまたはfalseどちらでも可
//文字はシステムでサポートされる文字である必要があります
document.execCommand('フォント名',false,'标楷体'); //trueまたはfalseどちらでも可
//字体变粗
document.execCommand('太字');
//变斜体
document.execCommand('斜体');
}
http://www.devdao.com/
/*
* この機能は、選択した中のエリアブロックを異なるラインストリップに追加するために使用されます。
*/
関数 fn_change_selection(){
// 選択中の文字を下に線を追加します
document.execCommand('下線');
//選択中の文字上划粗線
document.execCommand('ストライクスルー');
// 中の部分文字变细を選択します
document.execCommand('スーパースクリプト');
// 中区块の下划線取消を選択します
document.execCommand('下線');
}
/*
* この関数は、選択されたエリアブロックを異なる形式に配置するために使用されます。
*/
関数 fn_format(){
//有順序配列
document.execCommand('InsertOrderedList');
//实心無序列排列
document.execCommand('InsertUnownedList');
//空心無序列排列
document.execCommand('インデント');
}
/*
* この関数は、選択中のセクションブロックを削除または削除するために使用されます。
*/
関数 fn_CutOrDel(){
//删除选中の区块
//document.execCommand('削除');
//剪下選択中の区块
document.execCommand('カット');
}
/*
* この機能は、選択した中のゾーンブロックを対応するオブジェクトとして再構成するために使用されます。
*/
関数 fn_InsObj(){
/*
*****************************************
* 以下の命令はすべて、選択中のエリアブロックの 1 つのオブジェクトです。
* 特別な説明がない場合、2 番目のパラメータは true または false です。
* パラメータ 3 はオブジェクトの ID を示します。
* JavaScript 内で指定された ID を介して制御することができます。
*****************************************
*/
/* 重設定は 1 つのボタン (InsertButton および InsertInputButtong 一样、ただ前者はボタン、後者は入力)*/
/*
document.execCommand('InsertButton',false,"aa"); //true または false 無效
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 の場合は画像が必要、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";*/
//パスワードを入力してください
//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");
//テキストエリアに入力します
//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="bbbbb";*/
// キャンセル中のイメージ部分を取得するために使用されます
//document.execCommand('選択解除');
// 中央の面上のすべての要素を選択します
//document.execCommand('SelectAll');
}
/*
*この機能はトップページを一つの文書として保存するために使用されます
*/
関数 fn_save(){
//2 番目のパラメータは欲望保存のファイル名です
document.execCommand('名前を付けて保存','mycodes.txt');
//打印整个页面
//document.execCommand('PRint');
}
</スクリプト>
</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="改变文字背景色" ID="Button4" NAME="Button4"><br>
<input type="button" value="改变文字前景色" 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="プロパティを更新" onclick="document.execCommand('Refresh')" ID="Button11" NAME="Button11">
</body>
</HTML>
-